X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=umlisp.asd;h=6766a0b9ed31a2056e8fcb957ffb17677e43447a;hb=f1ceffd73c7e181db3b2a739b7dbc64243cfca2d;hp=368ce84015a71b4125b54b20fba5bb98cea8d446;hpb=0ececd07987c48de78c14a60136014a2df7b280b;p=umlisp.git diff --git a/umlisp.asd b/umlisp.asd index 368ce84..6766a0b 100644 --- a/umlisp.asd +++ b/umlisp.asd @@ -1,9 +1,28 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; $Id: umlisp.asd,v 1.1 2002/10/05 20:17:14 kevin Exp $ +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: umlisp.asd +;;;; Purpose: ASDF system definition file for UMLisp +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Apr 2000 +;;;; +;;;; $Id: umlisp.asd,v 1.11 2002/11/08 16:51:40 kevin Exp $ +;;;; +;;;; This file, part of UMLisp, is +;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. +;;;; +;;;; UMLisp users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU General Public License. +;;;; ************************************************************************* (in-package :asdf) -(defsystem umlisp +#+(or allegro lispworks cmu sbcl openmcl scl) +(defsystem :umlisp + :perform (load-op :after (op umlisp) + (pushnew :umlisp cl:*features*)) + :components ((:file "package") (:file "data-structures" :depends-on ("package")) @@ -12,7 +31,13 @@ (:file "parse-macros" :depends-on ("sql")) (:file "parse-2002" :depends-on ("parse-macros")) (:file "parse-common" :depends-on ("parse-2002")) - (:file "obj" :depends-on ("utils")) - (:file "obj-sql" :depends-on ("obj" "sql")) - (:file "obj-composite" :depends-on ("obj-sql")))) + (:file "sql-create" :depends-on ("parse-common")) + (:file "classes" :depends-on ("utils")) + (:file "sql-classes" :depends-on ("classes" "sql")) + (:file "composite" :depends-on ("sql-classes"))) + :depends-on (:clsql-mysql + :clsql-postgresql + :clsql + :kmrcl + :hyperobject))