;;;; -*- 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,v 1.14 2002/04/09 20:06:18 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 :cl-user) (load (make-pathname :name "set-logical" :type "cl" :defaults *load-truename*)) (set-logical-host-for-pathname "UFFI" *load-truename*) (set-logical-host-for-pathname "UFFI-SRC" (merge-pathnames (make-pathname :directory #+(or cmu allegro lispworks) '(:relative "src") #+mcl '(:relative "src" "mcl") #+cormanlisp '(:relative "src" "corman") ) *load-truename*)) ;;; UFFI system definition (mk:defsystem :uffi :source-pathname "UFFI-SRC:" :source-extension "cl" :binary-pathname "UFFI-SRC:bin;" :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*))