r8850: remove usql files
[clsql.git] / clsql.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     clsql.asd
6 ;;;; Purpose:  System definition for CLSQL-CLASSIC
7 ;;;; Authors:  Marcus Pearce and Kevin M. Rosenberg
8 ;;;; Created:  March 2004
9 ;;;;
10 ;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16
17 (asdf:defsystem #:clsql
18     :name "CLSQL"
19     :author ""
20     :maintainer ""
21     :version ""
22     :licence ""
23     :description "A high level Common Lisp interface to SQL RDBMS."
24     :long-description "A high level Common Lisp interface to SQL RDBMS
25 based on the Xanalys CommonSQL interface for Lispworks. It depends on
26 the low-level database interfaces provided by CLSQL and includes both
27 a functional and an object oriented interface."
28     :depends-on (clsql-base)
29     :components
30     ((:module sql
31               :components
32               ((:module :package
33                         :pathname ""
34                         :components ((:file "package")
35                                      (:file "kmr-mop" :depends-on ("package"))))
36                (:module :core
37                         :pathname ""
38                         :components ((:file "classes")
39                                      (:file "operations" :depends-on ("classes"))
40                                      (:file "syntax"))
41                         :depends-on (:package))
42                (:module :functional
43                         :pathname ""
44                         :components ((:file "sql")
45                                      (:file "table"))
46                         :depends-on (:core))
47                (:module :object
48                         :pathname ""
49                        :components ((:file "metaclasses")
50                                     (:file "objects" :depends-on ("metaclasses")))
51                        :depends-on (:functional))))))
52