;;; -*- Lisp -*- (defpackage :meta-system (:use "CL" "ASDF")) (in-package :meta-system) (defsystem :meta :version "0.1" :components ((:file "package") (:file "meta" :depends-on ("package")) ;; ew. have to preserve these multiple output files, I guess, ;; because we dont havw the ability to regenerate either from ;; the other or both from a common source (:doc-file "Prag-Parse" :pathname "Prag-Parse.html") (:doc-file "Prag-Parse-ps" :pathname "Prag-Parse.ps") (:doc-file "README")))