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