1 ; The systems are split up into two because travis will run more smoothly
2 ; if we use a custom built sbcl that has all the deps pre-loaded since
3 ; we are sure those will work just fine :)
5 ; You should link to this file in your systems directory, or however you
6 ; handle your asdf configurations. Then just (asdf:load-system :clnl)
8 ; There's probably a better way, but I don't know it
9 (asdf:defsystem docgen.internal
11 :components ((:file "package") (:file "func") (:file "pkg") (:file "struc") (:file "docgen")))
13 (asdf:defsystem docgen
14 :name "Documentation Generator"
16 :maintainer "Frank Duncan (frank@kank.com)"
17 :author "Frank Duncan (frank@kank.com)"
19 :depends-on (:cl-ppcre :docgen.internal))