r2755: move files
[clsql.git] / clsql-base.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-base.asd
6 ;;;; Purpose:       ASDF definition file for Base CLSQL
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: clsql-base.asd,v 1.11 2002/09/18 07:50:01 kevin Exp $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem clsql-base
22     :perform (load-op :after (op clsql-base)
23                       (pushnew :clsql-base cl:*features*))
24     :components
25     ((:module :base
26               :components
27               ((:file "cmucl-compat")
28                (:file "package")
29                (:file "utils" :depends-on ("package"))
30                (:file "classes" :depends-on ("package"))
31                (:file "conditions" :depends-on ("classes"))
32                (:file "db-interface" :depends-on ("conditions"))
33                (:file "initialize" :depends-on ("db-interface"))))))
34
35 (defmethod source-file-type  ((c cl-source-file)
36                               (s (eql (find-system :clsql-base)))) 
37    "cl")
38