summaryrefslogtreecommitdiff
path: root/cl-forth.asd
blob: 455a735ffd87448a5da10382d7299cc23b5e49e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(asdf:defsystem "cl-forth"
  :description "Stack based language implemented in Common Lisp"
  :version "0.1"
  :author "Emre Akan"
  :licence "MIT"
  :depends-on ("iterate" "cl-fad")
  :serial t
  :components ((:file "package")
               (:file "util")
               (:file "assembly")
               (:file "cl-forth")
               (:file "main")
               (:file "test/tests"))
  :build-operation "program-op"
  :build-pathname "test/cl-forth"
  :entry-point "cl-forth:main")