;;;; -*- Mode: LISP -*- ;;;; (in-package :asdf) (setf (logical-pathname-translations "owl2") `(("**;*.*" ,(make-pathname :directory (append (pathname-directory *load-pathname*) '(:wild-inferiors)) :name :wild :type :wild)))) (in-package :asdf) (defsystem :owl2 :name "OWLAPI2" :author "Alan Ruttenberg" :version "1" :licence "" :components ((:module jars :serial t :components ( (:jar-directory "jena" :pathname "owl2:jena;") ; (:jar-file "owlapi-bin.jar" :pathname "owl2:owlapi-bin.jar") )) ;; (:module "" ;; :serial t ;; :components ;; ((:file "owlapi")) ;; :depends-on (macros)) ;; (:module macros ;; :serial t ;; :pathname "" ;; :components ;; ((:file "visitor"))) (:module matcher :pathname "" :components ((:file "auxfns") (:file "patmatch"))) (:module translate :pathname "" :serial t :components ((:file "parse-mapping-spec") (:file "generate-mapping") (:file "the-mapping") (:file "parse-functional-syntax") (:file "tests") )) ) :depends-on (util inspect)) ;;;; eof