X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.asd;h=fd51b51e89318dfdf7e3d8606cf81a82049e2576;hb=d3c43ca237f12729988e5228460b3a455da1f227;hp=71d1c68957407a8d4daa79e986154edc9b1b2bf3;hpb=50ddc38a182350b9b832ed0616b82dad6c316ab0;p=uffi.git diff --git a/uffi.asd b/uffi.asd index 71d1c68..fd51b51 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.1 2002/08/18 00:51:54 kevin Exp $ +;;;; $Id: uffi.asd,v 1.3 2002/08/18 02:26:01 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -32,18 +32,26 @@ "cl") (defsystem uffi - :default-component-class uffi-cl-source-file - :pathname #-mcl "cl-library:uffi;" - #+mcl "cl-library:uffi;mcl;" - :perform (load-op :after (op uffi) - (pushnew :uffi cl:*features*)) - :components - ((:file "package") - (:file "primitives" :depends-on ("package")) - (:file "strings" :depends-on ("primitives")) - (:file "objects" :depends-on ("primitives")) - (:file "aggregates" :depends-on ("primitives")) - (:file "functions" :depends-on ("primitives")) - (:file "libraries" :depends-on ("package"))) -) + :name "cl-uffi" + :author "Kevin M. Rosenberg