Wed Apr 27 19:31:18 UTC 2005 mantoniotti * Added unification.asd file. diff -rN -u old-cl-unification-1/unification.asd new-cl-unification-1/unification.asd --- old-cl-unification-1/unification.asd 1970-01-01 00:00:00.000000000 +0000 +++ new-cl-unification-1/unification.asd 2013-07-24 17:39:47.000000000 +0000 @@ -0,0 +1,17 @@ +;;; -*- Mode: Lisp -*- + +;;; unification.asd -- +;;; ASDF system file. + +(asdf:defsystem 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"))) + +;;; end of file -- unification.asd --