Add structure documentation
[sheep] / src / main / docgen.asd
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 :)
4 ;
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)
7 ;
8 ; There's probably a better way, but I don't know it
9 (asdf:defsystem docgen.internal
10  :serial t
11  :components ((:file "package") (:file "func") (:file "pkg") (:file "struc") (:file "docgen")))
12
13 (asdf:defsystem docgen
14  :name "Documentation Generator"
15  :version "0.1"
16  :maintainer "Frank Duncan (frank@kank.com)"
17  :author "Frank Duncan (frank@kank.com)"
18  :serial t
19  :depends-on (:cl-ppcre :docgen.internal))