X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.system.debian;fp=uffi.system.debian;h=42ba5664c3ff8b6ce97e059e0e4ad674862d09c0;hb=964218d5bff2c25270df2c2c8fb9a280d72067f5;hp=0000000000000000000000000000000000000000;hpb=06f7c284161dd38083e1d4682b392178502dd8b6;p=uffi.git diff --git a/uffi.system.debian b/uffi.system.debian new file mode 100644 index 0000000..42ba566 --- /dev/null +++ b/uffi.system.debian @@ -0,0 +1,42 @@ +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: uffi.system +;;;; Purpose: Defsystem-3/4 system definition file for UFFI package +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Feb 2002 +;;;; +;;;; $Id: uffi.system.debian,v 1.1 2002/04/28 03:52:01 kevin Exp $ +;;;; +;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; UFFI users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* + +(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) +(in-package :mk) + + + +;;; UFFI system definition + +(mk:defsystem :uffi + :source-pathname + #+(or cmu allegro lispworks) "cl-library:" + #+mcl "cl-library:mcl;" + #-(or cmu allegro lispworks) nil + :source-extension "cl" + :components + ((:file "package") + (:file "primitives" :depends-on ("package")) + (:file "strings" :depends-on ("primitives")) + (:file "objects" :depends-on ("primitives")) + (:file "aggregates" :depends-on ("primitives")) + (:file "functions" :depends-on ("primitives")) + (:file "libraries" :depends-on ("package"))) + :finally-do + (pushnew :uffi cl:*features*)) +