Added the new system building files with more meaningful names
Fri Nov 9 13:34:18 UTC 2007 mantoniotti
* Added the new system building files with more meaningful names
Added the new system building files with more meaningful names
w.r.t. the name of the library.
diff -rN -u old-cl-unification-1/cl-unification.asd new-cl-unification-1/cl-unification.asd
--- old-cl-unification-1/cl-unification.asd 2013-07-21 20:00:56.000000000 +0000
+++ new-cl-unification-1/cl-unification.asd 2013-07-21 20:00:56.000000000 +0000
@@ -3,38 +3,16 @@
;;;; cl-unification.asd --
;;;; ASDF system file.
-;;;;===========================================================================
-;;;; Simple stuff that should be built in ASDF.
-
-(defpackage "CL-UNIFICATION-SYSTEM" (:use "CL" "ASDF"))
-
-(in-package "CL-UNIFICATION-SYSTEM")
-
-(defclass asdf-system-definition-file (asdf:cl-source-file) ())
-(defmethod source-file-type ((c asdf-system-definition-file) (s module)) "asd")
-
-
-(asdf:defsystem :cl-unification
- :author "Marco Antoniotti"
- :serial t
- :components ((:file "unification-package")
- (:file "variables")
- (:file "substitutions")
- (:file "lambda-list-parsing")
- (:file "templates-hierarchy")
- (:file "unifier")
- (:file "match-block")
- (:file "apply-substitution")
- #+asdf-with-optional-dependencies
- (:module "lib-dependent"
- :pathname "lib-dependent"
- :depends-on ("templates-hierarchy" "unifier")
- :components ((:file "cl-ppcre-template"
- :depends-on (cl-ppcre))
- ))
- #-asdf-with-optional-dependencies
- (asdf-system-definition-file
- "cl-unification-lib")
- ))
+(asdf:defsystem cl-unification
+ :author "Marco Antoniotti"
+ :serial t
+ :components ((:file "unification-package")
+ (:file "variables")
+ (:file "substitutions")
+ (:file "lambda-list-parsing")
+ (:file "templates-hierarchy")
+ (:file "unifier")
+ (:file "match-block")
+ (:file "apply-substitution")))
;;;; end of file -- cl-unification.asd --
diff -rN -u old-cl-unification-1/cl-unification.system new-cl-unification-1/cl-unification.system
--- old-cl-unification-1/cl-unification.system 2013-07-21 20:00:56.000000000 +0000
+++ new-cl-unification-1/cl-unification.system 2013-07-21 20:00:56.000000000 +0000
@@ -4,7 +4,6 @@
;;;; MK:DEFSYSTEM system file.
(mk:defsystem "CL-UNIFICATION"
- :source-extension "lisp"
:components ("unification-package"
"variables"
"substitutions"
@@ -12,13 +11,6 @@
"templates-hierarchy"
"unifier"
"match-block"
- "apply-substitution"
- (:module "lib-dependent"
- :depends-on ("templates-hierarchy" "unifier")
- :components ((:subsystem "cl-ppcre-template"
- :non-required-p t
- )
- ))
- ))
+ "apply-substitution"))
;;; end of file -- cl-unification.system --