This repository was archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcmacro.asd
More file actions
36 lines (36 loc) · 1.24 KB
/
Copy pathcmacro.asd
File metadata and controls
36 lines (36 loc) · 1.24 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
30
31
32
33
34
35
36
(asdf:defsystem cmacro
:version "0.2"
:author "Fernando Borretti"
:license "MIT"
:depends-on (:split-sequence
:trivial-types
:anaphora
:esrap
:yason)
:components ((:module "src"
:serial t
:components
((:file "error")
(:file "token")
(:file "macro")
(:file "parser")
(:file "pattern")
(:file "db")
(:file "printer")
(:file "template")
(:file "macroexpand")
(:file "cmacro"))))
:description "Lisp macros for C"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.md"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op cmacro-test))))