9d5c21e4cd41e7d5ad56479a7f997d5a3115d88e
[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.4 2002/09/01 09:00:15 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 (defmethod source-file-type  ((c cl-source-file)
26                               (s (eql (find-system 'clsql-uffi)))) 
27    "cl")
28
29 (defsystem clsql-uffi
30   :pathname #.(format nil "~A:clsql-uffi;" +clsql-logical-host+)
31   :components ((:file "clsql-uffi-package")
32                (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package"))
33                (:file "clsql-uffi" :depends-on ("clsql-uffi-loader")))
34   :depends-on (:uffi))
35