-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathvacietis.asd
41 lines (40 loc) · 1.21 KB
/
vacietis.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
34
35
36
37
38
39
40
41
;;;; -*- lisp -*-
(defsystem :vacietis
:name "vacietis"
:author "Vladimir Sedach <vsedach@gmail.com>"
:description "C to Common Lisp compiler"
:licence "LLGPL v3 or later"
:components
((:static-file "vacietis.asd")
(:static-file "vacietis.test.asd")
(:module :compiler
:serial t
:components
((:file "package")
(:file "state")
(:file "implementation")
(:file "libc-support")
(:file "type")
(:file "reader")))
(:module :libc
:serial t
:components
((:file "package")
(:file "errno")
(:file "stddef")
(:file "stdarg")
(:static-file "stdarg.h")
(:static-file "stdbool.h")
(:file "ctype")
(:file "math")
(:file "stdio")
(:static-file "scanf.c")
(:file "stdlib")
(:file "string")
(:static-file "string.c"))
:depends-on (:compiler))
(:module :runtime
:components
((:file "program"))
:depends-on (:compiler :libc)))
:depends-on (:named-readtables :anaphora :babel :cl-ppcre :cl-fad))