blob: f192b5e58302c46ba36759e5d7e6fab5abde16c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(asdf:defsystem "cl-forth"
:description "Stack based language implemented in Common Lisp"
:version "0.1"
:author "Emre Akan"
:licence "MIT"
:depends-on ("iterate" "cl-fad")
:serial t
:components ((:file "package")
(:file "util")
(:file "assembly")
(:file "cl-forth")
(:file "simulation")
(:file "main")
(:file "test/tests"))
:build-operation "program-op"
:build-pathname "test/cl-forth"
:entry-point "cl-forth:main")
|