15 lines
434 B
Common Lisp
15 lines
434 B
Common Lisp
(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")
|