r2755: move files
[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.9 2002/09/18 07:50:01 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     :components
23     ((:module :db-aodbc
24               :components
25               ((:file "aodbc-package")
26                (:file "aodbc-sql" :depends-on ("aodbc-package")))))
27     :depends-on (:clsql-base))
28
29 (defmethod source-file-type  ((c cl-source-file)
30                               (s (eql (find-system :clsql-aodbc)))) 
31    "cl")
32