;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: uffi.asd ;;;; Purpose: ASDF system definition file for UFFI package ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; ;;;; $Id: uffi.asd,v 1.13 2002/09/20 01:26:17 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 :asdf) (defsystem uffi :name "cl-uffi" :author "Kevin M. Rosenberg " :version "0.7.2" :maintainer "Kevin M. Rosenberg " :licence "Lessor Lisp General Public License" :description "Universal Foreign Function Library for Common Lisp" :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL." :perform (load-op :after (op uffi) (pushnew :uffi cl:*features*)) :components ( #+(or cmu sbcl allegro lispworks) (:module :src-main :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")))) #+mcl (:module :src-mcl :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")))) #+cormanlisp (:module :src-corman :components ((:file "uffi-corman"))) )) (defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'uffi)))) "cl")