r10039: * BUGS: New file. Document suspected SIGPIPE
[clsql.git] / clsql-db2.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-db2.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL Db2 backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file is part of CLSQL.
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 (defpackage #:clsql-db2-system (:use #:asdf #:cl))
20 (in-package #:clsql-db2-system)
21
22 ;;; System definition
23
24 (defsystem clsql-db2
25   :name "clsql-db2"
26   :author "Kevin M. Rosenberg <kmr@debian.org>"
27   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
28   :licence "Lessor Lisp General Public License"
29   :description "Common Lisp SQL Db2 Driver"
30   :long-description "cl-sql-db2 package provides a database driver to the Db2 database system."
31
32   :depends-on (clsql-uffi)
33   :components
34     ((:module :db-db2
35               :components
36               ((:file "db2-package")
37                (:file "db2-loader" :depends-on ("db2-package"))
38                (:file "foreign-resources" :depends-on ("db2-package"))
39                (:file "db2-constants" :depends-on ("db2-package"))
40                (:file "db2-api" :depends-on ("db2-constants" "db2-loader"))
41                (:file "db2-sql" :depends-on ("db2-api" "foreign-resources"))
42                (:file "db2-objects" :depends-on ("db2-sql"))))))