aboutsummaryrefslogtreecommitdiffstats
path: root/Lisp/moxie/moxie.asd
diff options
context:
space:
mode:
Diffstat (limited to 'Lisp/moxie/moxie.asd')
-rw-r--r--Lisp/moxie/moxie.asd34
1 files changed, 34 insertions, 0 deletions
diff --git a/Lisp/moxie/moxie.asd b/Lisp/moxie/moxie.asd
new file mode 100644
index 0000000..bda1706
--- /dev/null
+++ b/Lisp/moxie/moxie.asd
@@ -0,0 +1,34 @@
+;;; -*- Lisp -*-
+;; $Id: moxie.asd 33 2006-01-01 06:41:36Z bjc $
+(defpackage moxie-system
+ (:use :cl :asdf))
+(in-package :moxie-system)
+
+(defsystem :moxie
+ :name "Moxie REPL Components."
+ :version "0.2"
+ :author "Brian Cully <shmit@kublai.com>"
+ :maintainer "Brian Cully <shmit@kublai.com>"
+ :licence "Public Domain"
+ :description "Moxie's Lisp programming interface."
+
+ :depends-on (#+sbcl sb-bsd-sockets)
+ :components ((:file "package")
+ (:module "utils"
+ :components ((:file "bjc-utils"))
+ :depends-on ("package"))
+ (:module "compat"
+ :components ((:file #+sbcl "compat-sbcl"
+ #+clisp "compat-clisp"
+ #+openmcl "compat-openmcl"
+ #-(or sbcl clisp openmcl) (error "Compiler not supported.")))
+ :depends-on ("package"))
+ (:module "main"
+ :pathname ""
+ :components ((:file "moxie")
+ (:file "world" :depends-on ("moxie"))
+ (:file "events" :depends-on ("world"))
+ (:file "repl" :depends-on ("world"))
+ (:file "default" :depends-on ("moxie")))
+ :depends-on ("package" "compat" "utils"))))
+(pushnew :moxie *features*)