forked from ilitirit/manardb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanardb.asd
29 lines (25 loc) · 934 Bytes
/
manardb.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
(cl:in-package #:cl-user)
(asdf:defsystem manardb
:version "0.1.20090911"
:licence "LLGPL"
:components
((:module :src
:components (
(:file "package")
(:file "widths" :depends-on ("package"))
(:file "utils" :depends-on ("package"))
(:file "mtagmap" :depends-on ("widths" "struct" "mop"))
(:file "mop" :depends-on ("struct"))
(:file "struct" :depends-on ("utils" "widths"))
(:file "class" :depends-on ("mop" "mtagmap"))
(:file "types" :depends-on ("class"))
(:file "array" :depends-on ("types"))
(:file "gc" :depends-on ("finalize"))
(:file "rewrite-gc" :depends-on ("gc"))
(:file "box" :depends-on ("types"))
(:file "finalize" :depends-on ("box"))
(:file "iterator" :depends-on ("class"))
(:file "fixed-string" :depends-on ("box"))
(:file "transaction" :depends-on ("finalize"))
)))
:depends-on (alexandria osicat iterate closer-mop cl-irregsexp))