r2780: *** empty log message ***
[clsql.git] / clsql-aodbc.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-aodbc.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL AODBC backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: clsql-aodbc.asd,v 1.10 2002/09/20 01:40:54 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-aodbc
22   :name "cl-sql-aodbc"
23   :author "Kevin M. Rosenberg <kmr@debian.org>"
24   :version "0.9.2"
25   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
26   :licence "Lessor Lisp General Public License"
27   :description "Common Lisp SQL AODBC Driver"
28   :long-description "cl-sql-aodbc package provides a database driver to AllegroCL's AODBC database interface."
29
30   :components
31     ((:module :db-aodbc
32               :components
33               ((:file "aodbc-package")
34                (:file "aodbc-sql" :depends-on ("aodbc-package")))))
35     :depends-on (:clsql-base))
36
37 (defmethod source-file-type  ((c cl-source-file)
38                               (s (eql (find-system :clsql-aodbc)))) 
39    "cl")
40