;;;; -*- Mode: LISP -*- ;;;; (in-package :asdf) (setf (logical-pathname-translations "cel") `(("**;*.*" ,(make-pathname :directory (append (pathname-directory *load-pathname*) '(:wild-inferiors)) :name :wild :type :wild)))) (defsystem :cel :name "CEL" :author "Franz Baader, Carsten Lutz, Boontawee Suntisrivaraporn" :licence "see LICENSE.txt" :source-file-type "cl" :components ((:module main :pathname "" :serial t :components ((:file "cel") (:file "module") (:file "system") (:file "utilities") (:file "core") (:file "classifier") (:file "hst") (:file "mina") (:file "repository") (:file "text") (:file "interface") (:file "init") ))) :depends-on ()) ;;;; eof