summaryrefslogtreecommitdiff
path: root/cl-forth.asd
diff options
context:
space:
mode:
Diffstat (limited to 'cl-forth.asd')
-rw-r--r--cl-forth.asd14
1 files changed, 14 insertions, 0 deletions
diff --git a/cl-forth.asd b/cl-forth.asd
new file mode 100644
index 0000000..7c6f9ea
--- /dev/null
+++ b/cl-forth.asd
@@ -0,0 +1,14 @@
+(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")