19 lines
548 B
Plaintext
19 lines
548 B
Plaintext
|
;;;; cl-forth.asd
|
||
|
|
||
|
(asdf:defsystem cl-forth
|
||
|
:description "FORTH interpreter written in Common Lisp"
|
||
|
:author ("Bubblegumdrop <staticsunn@gmail.com>")
|
||
|
:license "GPLv3+"
|
||
|
:version "0.1.0"
|
||
|
:depends-on (:deploy)
|
||
|
:components ((:file "package")
|
||
|
(:file "utils")
|
||
|
(:file "stack")
|
||
|
(:file "interpreter")
|
||
|
(:file "methods")
|
||
|
(:file "cl-forth"))
|
||
|
:defsystem-depends-on (:deploy)
|
||
|
:build-operation "deploy-op"
|
||
|
:build-pathname "cl-forth.run"
|
||
|
:entry-point "cl-forth::main")
|