r8984: initial odbc files
[clsql.git] / clsql-odbc.asd
diff --git a/clsql-odbc.asd b/clsql-odbc.asd
new file mode 100644 (file)
index 0000000..ae49148
--- /dev/null
@@ -0,0 +1,39 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:     clsql-odbc.asd
+;;;; Purpose:  ASDF definition file for CLSQL ODBC backend
+;;;; Author:   Kevin M. Rosenberg
+;;;; Created:  April 2004
+;;;;
+;;;; $Id: clsql-odbc.asd 8850 2004-04-07 16:07:46Z kevin $
+;;;;
+;;;; This file, part of CLSQL, is Copyright (c) 200d42 by Kevin M. Rosenberg
+;;;;
+;;;; CLSQL users are granted the rights to distribute and use this software
+;;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+;;;; *************************************************************************
+
+(defpackage #:clsql-odbc-system (:use #:asdf #:cl))
+(in-package #:clsql-odbc-system)
+
+#+(or allegro lispworks cmu sbcl openmcl mcl scl)
+(defsystem :clsql-odbc
+  :name "clsql-odbc"
+  :author "Kevin M. Rosenberg <kmr@debian.org>"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "Lessor Lisp General Public License"
+  :description "Common Lisp SQL ODBC Driver"
+  :long-description "cl-sql-odbc package provides a database driver to the ODBC database system."
+
+  :depends-on (uffi clsql-base clsql-uffi)
+  :components
+  ((:module :db-odbc
+           :components
+           ((:file "odbc-package")
+            (:file "odbc-loader" :depends-on ("odbc-package"))
+            (:file "odbc-api" :depends-on ("odbc-loader"))
+            (:file "odbc-sql" :depends-on ("odbc-api"))))))
+