Files
kurt/cl-forth.asd
mRnea 004c2b5628 some arrangements to fix quirks of symbols in the executable program
note that (eq 'baz:foo bar:foo) is not true
so some stuff that works in the repl fails in executable
2024-07-29 23:15:38 +03:00

16 lines
446 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")
: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")