git.fiddlerwoaroof.com
Browse code

Add .asd file for the project.

Yang Xiaofeng authored on 25/03/2013 13:14:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,30 @@
1
+;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
2
+
3
+(in-package :asdf)
4
+
5
+;; #-(or openmcl mcl sbcl cmu scl clisp lispworks ecl allegro cormanlisp abcl)
6
+;; (error "Sorry, this Lisp is not yet supported.  Patches welcome!")
7
+
8
+(defsystem :ops5
9
+  :version "2.0.0.0"
10
+  :description "VPS2 -- Interpreter for OPS5"
11
+  :author ""
12
+  :maintainer ""
13
+  :licence "public domain"
14
+  :depends-on ()
15
+  :components
16
+  ((:module "src"
17
+            :serial t
18
+            :components
19
+            (
20
+             (:file "ops")			; so that shadowing takes place...
21
+             (:file "ops-globals")
22
+             (:file "ops-util")		; macros
23
+             (:file "ops-compile")
24
+             (:file "ops-rhs")		; defines macros used in ops-init
25
+             (:file "ops-main")		; macros
26
+             (:file "ops-match") 
27
+             (:file "ops-backup")
28
+             (:file "ops-io")
29
+             (:file "ops-init")))))
30
+