1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
5 ;;;; Name: clsql-db2.asd
6 ;;;; Purpose: ASDF definition file for CLSQL Db2 backend
7 ;;;; Programmer: Kevin M. Rosenberg
8 ;;;; Date Started: Aug 2002
12 ;;;; This file is part of CLSQL.
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 ;;;; *************************************************************************
19 (defpackage #:clsql-db2-system (:use #:asdf #:cl))
20 (in-package #:clsql-db2-system)
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."
32 :depends-on (clsql-uffi)
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"))))))