-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcl-annot-revisit.asd
More file actions
29 lines (29 loc) · 1.41 KB
/
cl-annot-revisit.asd
File metadata and controls
29 lines (29 loc) · 1.41 KB
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
(defsystem #:cl-annot-revisit
:description "Re-implementation of 'cl-annot', an annotation syntax library for Common Lisp."
:license "WTFPL"
:author "YOKOTA Yuki <y2q.actionman@gmail.com>"
:depends-on (#:alexandria #:named-readtables)
:pathname #.(make-pathname :directory '(:relative "src"))
:serial t
:components ((:file "package")
(:module "at-macro"
:components
((:file "package")
(:file "condition" :depends-on ("package"))
(:file "util" :depends-on ("package"))
(:file "eval-when" :depends-on ("package"))
(:file "form-traversal" :depends-on ("package"))
(:file "declaration" :depends-on ("util" "form-traversal"))
(:file "declamation" :depends-on ("declaration"))
(:file "documentation" :depends-on ("util" "form-traversal"))
(:file "export" :depends-on ("util" "form-traversal"))
(:file "defclass" :depends-on ("export"))
(:file "defstruct" :depends-on ("defclass" "documentation"))
(:file "slot" :depends-on ("package"))))
(:module "at-syntax"
:serial t
:components
((:file "package")
(:file "defmethods")
(:file "reader"))))
:in-order-to ((test-op (test-op #:cl-annot-revisit-test))))