-
Notifications
You must be signed in to change notification settings - Fork 1
/
incless.asd
33 lines (32 loc) · 1.34 KB
/
incless.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
;;;; incless.asd
(asdf:defsystem "incless"
:description "A portable and extensible Common Lisp printer implementation (core)"
:license "BSD"
:author ("Tarn W. Burton"
"Robert Strandh"
"Lonjil")
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Incless"
:bug-tracker "https://github.com/s-expressionists/Incless/issues"
:depends-on ("quaviver")
:components ((:module "code"
:serial t
:components ((:file "package")
(:file "interface")
(:file "write-object")
(:file "integer")
(:file "rational")
(:file "float")
(:file "complex")
(:file "character")
(:file "string")
(:file "cons")
(:file "bit-vector")
(:file "array")
(:file "vector")
(:file "random-state")
(:file "pathname")
(:file "standard-object")
(:file "structure")
(:file "symbol")))))