r4363: *** empty log message ***
[uffi.git] / uffi.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          uffi.asd
6 ;;;; Purpose:       ASDF system definition file for UFFI package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: uffi.asd,v 1.23 2003/04/03 17:02:36 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI 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 (in-package :asdf)
21
22 #+(or allegro lispworks cmu mcl cormanlisp sbcl scl)
23 (defsystem uffi
24   :name "cl-uffi"
25   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
26   :version "1.0.0"
27   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
28   :licence "Lessor Lisp General Public License"
29   :description "Universal Foreign Function Library for Common Lisp"
30   :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL."
31   
32   :perform (load-op :after (op uffi)
33     (pushnew :uffi cl:*features*))
34
35   :components
36   ((:module :src
37             :components
38             ((:file "package")
39              (:file "primitives" :depends-on ("package"))
40              #+mcl (:file "readmacros-mcl" :depends-on ("package"))
41              (:file "strings" :depends-on ("primitives"))
42              (:file "objects" :depends-on ("primitives"))
43              (:file "aggregates" :depends-on ("primitives"))
44              (:file "functions" :depends-on ("primitives"))
45              (:file "libraries" :depends-on ("package"))
46              (:file "os" :depends-on ("package"))))
47      ))
48