1 ;;;; -*- Mode: Lisp -*- 2 3 ;;;; cl-unification.system -- 4 ;;;; MK:DEFSYSTEM system file. 5 6 ;;;; See file COPYING for copyright licensing information. 7 8 (mk:defsystem "CL-UNIFICATION" 9 :source-extension "lisp" 10 :components ("unification-package" 11 "variables" 12 "substitutions" 13 "lambda-list-parsing" 14 "templates-hierarchy" 15 "unifier" 16 "match-block" 17 "apply-substitution" 18 (:module "lib-dependent" 19 :depends-on ("templates-hierarchy" "unifier") 20 :components ((:subsystem "cl-ppcre-template" 21 :non-required-p t 22 ) 23 )) 24 )) 25 26 ;;; end of file -- cl-unification.system --