X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.debian.system;fp=uffi.debian.system;h=0000000000000000000000000000000000000000;hb=334e4fc54c9f7cbf3a3db584102d6108f9638ebe;hp=3e86b7e4de24162e41a289a06848fdb459a7ca36;hpb=085e543dee56a28fce710316b91a82baab1c3dc8;p=uffi.git diff --git a/uffi.debian.system b/uffi.debian.system deleted file mode 100644 index 3e86b7e..0000000 --- a/uffi.debian.system +++ /dev/null @@ -1,39 +0,0 @@ -;;;; -*- 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.debian.system,v 1.1 2002/05/03 03:53:10 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 #-mcl "cl-library:uffi;" - #+mcl "cl-library:uffi;mcl;" - :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*)) -