8ecdc352cc8970769109ce797943682d455f3779
[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.7 2002/09/06 10:56:13 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 ;;; System definition
24
25 (defsystem clsql-uffi
26   :pathname #.(format nil "~A:clsql-uffi;"
27       #+common-lisp-controller "cl-library"
28       #-common-lisp-controller "clsql")
29   :components ((:file "clsql-uffi-package")
30                (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package"))
31                (:file "clsql-uffi" :depends-on ("clsql-uffi-loader")))
32   :depends-on (:uffi :clsql-base))
33
34
35 (defmethod source-file-type  ((c cl-source-file)
36                               (s (eql (find-system 'clsql-uffi)))) 
37    "cl")
38