-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkiln.asd
29 lines (26 loc) · 918 Bytes
/
kiln.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
(defsystem "kiln"
:version "0.0.1"
:description "Practical scripting in Common Lisp"
:author "Paul M. Rodriguez <[email protected]>"
:license "MIT"
:depends-on (:kiln/all)
:class :package-inferred-system
:in-order-to ((build-op (load-op "kiln/scripts/rebuild")))
:perform
(build-op (o c) (symbol-call :kiln/scripts/rebuild '#:main nil)))
(asdf:defsystem "kiln/build"
:description "Build the Kiln image"
:author "Paul M. Rodriguez <[email protected]>"
:license "MIT"
:depends-on (:kiln/image)
:class :package-inferred-system
:build-operation "asdf:program-op"
:build-pathname "kiln"
:entry-point "kiln/dispatch:invoke-entry-point")
(asdf:defsystem "kiln/scripts"
:description "Built-in Kiln scripts"
:author "Paul M. Rodriguez <[email protected]>"
:license "MIT"
:class :package-inferred-system
:pathname "scripts/")
(register-system-packages "trivia" '(:trivia.fail))