r1811: *** empty log message ***
[uffi.git] / uffi.system.debian
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          uffi.system
6 ;;;; Purpose:       Defsystem-3/4 system definition file for UFFI package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: uffi.system.debian,v 1.1 2002/04/28 03:52:01 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 :mk)
21
22
23
24 ;;; UFFI system definition
25
26 (mk:defsystem :uffi
27     :source-pathname 
28     #+(or cmu allegro lispworks) "cl-library:"
29     #+mcl "cl-library:mcl;"
30     #-(or cmu allegro lispworks) nil    
31     :source-extension "cl"
32     :components 
33     ((:file "package")
34      (:file "primitives" :depends-on ("package"))
35      (:file "strings" :depends-on ("primitives"))
36      (:file "objects" :depends-on ("primitives"))
37      (:file "aggregates" :depends-on ("primitives"))
38      (:file "functions" :depends-on ("primitives"))
39      (:file "libraries" :depends-on ("package")))
40     :finally-do
41     (pushnew :uffi cl:*features*))
42