-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhu.dwim.delico.asd
50 lines (47 loc) · 2.36 KB
/
hu.dwim.delico.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
42
43
44
45
46
47
48
49
50
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*-
;;;
;;; Copyright (c) 2009 by the authors.
;;;
;;; See LICENCE for details.
(defsystem :hu.dwim.delico
:defsystem-depends-on (:hu.dwim.asdf)
:class "hu.dwim.asdf:hu.dwim.system"
:author ("Attila Lendvai <[email protected]>"
"Levente Mészáros <[email protected]>")
:description "Delimited, interpreted shift-reset continuation."
:depends-on (:contextl
:hu.dwim.def+hu.dwim.common
:hu.dwim.walker)
:components ((:module "source"
:components ((:file "package")
(:file "duplicates" :depends-on ("package"))
(:file "infrastructure" :depends-on ("package" "duplicates"))
(:module "interpreter"
:depends-on ("package" "duplicates" "infrastructure")
:components ((:file "interpreter")
(:file "handler" :depends-on ("interpreter"))
(:file "apply" :depends-on ("interpreter"))
(:file "generic-function" :depends-on ("interpreter"))
(:file "common-lisp-cc" :depends-on ("apply" "generic-function"))))))))
(defsystem :hu.dwim.delico/test
:defsystem-depends-on (:hu.dwim.asdf)
:class "hu.dwim.asdf:hu.dwim.test-system"
:depends-on (:hu.dwim.def
:hu.dwim.delico
:hu.dwim.stefil+hu.dwim.def+swank
:hu.dwim.util
:hu.dwim.util/temporary-files)
:components ((:module "test"
:components ((:file "interpreted" :depends-on ("suite"))
(:file "package")
(:file "special-variables" :depends-on ("suite"))
(:file "suite" :depends-on ("package"))))))
(defsystem :hu.dwim.delico/documentation
:defsystem-depends-on (:hu.dwim.asdf)
:class "hu.dwim.asdf:hu.dwim.documentation-system"
:depends-on (:hu.dwim.delico/test
:hu.dwim.walker/documentation
:hu.dwim.presentation)
:components ((:module "documentation"
:components ((:file "delico" :depends-on ("package"))
(:file "package")))))