summaryrefslogtreecommitdiff
path: root/cl-forth.asd
diff options
context:
space:
mode:
authormRnea <[email protected]>2024-07-18 13:50:14 +0300
committermRnea <[email protected]>2024-07-18 13:50:14 +0300
commita0fb419b1be8ed53f580c509b7a55cde8e06d4c9 (patch)
tree36ee859bce5235621e6f7656bb41a269dbe90736 /cl-forth.asd
başlangıç, push pop + - . vb.
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")