cl-forth/cl-forth.asd

19 lines
548 B
Plaintext
Raw Normal View History

2024-09-06 10:58:05 -04:00
;;;; 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")