Skip to content

Commit

Permalink
rfe9550: ASDF integration
Browse files Browse the repository at this point in the history
Contributed by james anderson <james.anderson@setf.de>.
  • Loading branch information
dklayer committed Apr 23, 2010
1 parent 41da1de commit 8df46c4
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions aserve.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
;;; ASD file contributed by james anderson <james.anderson@setf.de>

(in-package :cl-user)

(defvar *loadswitch* :compile-if-needed)
(defparameter *aserve-root* (directory-namestring *load-pathname*))

(unless (find-class 'asdf::cl-file nil)
(defclass asdf::cl-file (asdf:cl-source-file) ())
(defmethod asdf:source-file-type ((c asdf::cl-file) (s asdf:module)) "cl"))

(asdf:defsystem :aserve
:components
;; this list is in cl/src/sys/make.cl as well... keep in sync
((:module "htmlgen" :components ((:cl-file "htmlgen")
(:static-file "ChangeLog")))
(:cl-file "packages")
(:cl-file "macs")
(:cl-file "main")
(:cl-file "headers")
(:cl-file "parse")
(:cl-file "decode")
(:cl-file "publish")
(:cl-file "authorize")
(:cl-file "log" )
(:cl-file "client")
(:cl-file "proxy")
(:cl-file "cgi")
(:cl-file "playback")

(:static-file "README.md")
(:static-file "ChangeLog")
(:static-file "license-lgpl.txt")
(:static-file "license-allegroserve.txt")
(:static-file "load"))
:serial t)


0 comments on commit 8df46c4

Please sign in to comment.