r2298: *** empty log message ***
[clsql.git] / clsql-uffi.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-uffi.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL UFFI Helper package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: clsql-uffi.asd,v 1.1 2002/08/18 02:57:50 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 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20
21 (in-package :asdf)
22
23 (unless (find-class 'clsql-cl-source-file)
24   (defclass clsql-cl-source-file (cl-source-file) ())
25   (defmethod source-file-type ((c clsql-cl-source-file) (s module)) 
26     "cl"))
27
28 ;;; System definition
29
30 (defsystem clsql-uffi
31     :default-component-class clsql-cl-source-file
32     :pathname "cl-library:clsql-uffi;"
33     :components ((:file "clsql-uffi-package")
34                  (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package"))
35                  (:file "clsql-uffi" :depends-on ("clsql-uffi-loader")))
36     :depends-on (:uffi))
37