Skip to content

Instantly share code, notes, and snippets.

Created January 1, 2018 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/986b798f2292b1537e69ef4742e87aad to your computer and use it in GitHub Desktop.
Save anonymous/986b798f2292b1537e69ef4742e87aad to your computer and use it in GitHub Desktop.
(asdf:defsystem :modular-package
:name "modular-package"
:serial t
:components
((:file "package")
(:module "mylibrary"
:serial t
:components ((:file "lib")))
(:module "foo"
:depends-on ("package" "mylibrary")
:serial t
:components ((:file "foo1")
(:file "foo2")))
(:module "bar"
:depends-on ("package" "mylibrary")
:serial t
:components ((:file "bar1")
(:file "bar2")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment