r3021: *** empty log message ***
[umlisp.git] / umlisp.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          umlisp.asd
6 ;;;; Purpose:       ASDF system definition file for UMLisp
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: umlisp.asd,v 1.7 2002/10/14 18:51:38 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UMLisp, is
13 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
14 ;;;;
15 ;;;; UMLisp users are granted the rights to distribute and use this software
16 ;;;; as governed by the terms of the GNU General Public License.
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 #+(or allegro lispworks cmu sbcl openmcl)
22 (defsystem :umlisp
23   :perform (load-op :after (op umlisp)
24                     (pushnew :umlisp cl:*features*))
25   
26     :components 
27      ((:file "package")
28       (:file "data-structures" :depends-on ("package"))
29       (:file "sql" :depends-on ("data-structures"))
30       (:file "utils" :depends-on ("data-structures"))
31       (:file "parse-macros"  :depends-on ("sql"))
32       (:file "parse-2002"  :depends-on ("parse-macros"))
33       (:file "parse-common"  :depends-on ("parse-2002"))
34       (:file "classes" :depends-on ("utils"))
35       (:file "sql-classes" :depends-on ("classes" "sql"))
36       (:file "composite" :depends-on ("sql-classes")))
37      :depends-on (:clsql-mysql
38                   :clsql-postgresql
39                   :clsql
40                   :kmrcl))
41
42 #+(or allegro lispworks cmu sbcl openmcl)
43 (when (ignore-errors (find-class 'load-compiled-op))
44   (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :umlisp))))
45     (pushnew :umlisp cl:*features*)))