blob: cb771077b6fc193f5a4bac55b2fafe4933c56ee6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(asdf:defsystem "cl-forth"
:description "Stack based language implemented in Common Lisp"
:version "0.1"
:author "Emre Akan"
:licence "MIT"
:depends-on ("iterate")
:serial t
: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")
|