c45d31cf7e73330afbfb583a552eb69596aa5cf3
[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.8 2002/09/17 17:16:43 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   :components
27   ((:module :uffi
28             :components
29             ((: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")