Remove old windows .dll files from source
[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 ;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
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 (defpackage #:clsql-aodbc-system (:use #:asdf #:cl))
18 (in-package #:clsql-aodbc-system)
19
20 #+(and allegro (not allegro-cl-trial))
21 (defsystem clsql-aodbc
22   :name "cl-sql-aodbc"
23   :author "Kevin M. Rosenberg <kmr@debian.org>"
24   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
25   :licence "Lessor Lisp General Public License"
26   :description "Common Lisp SQL AODBC Driver"
27   :long-description "cl-sql-aodbc package provides a database driver to AllegroCL's AODBC database interface."
28
29   :depends-on (clsql)
30   :components
31     ((:module :db-aodbc
32               :components
33               ((:file "aodbc-package")
34                (:file "aodbc-sql" :depends-on ("aodbc-package"))))))
35
36 #-(and allegro (not allegro-cl-trial))
37 (defsystem clsql-aodbc)