r1555: *** empty log message ***
[uffi.git] / uffi.system
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,v 1.5 2002/03/14 21:03:12 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 :cl-user)
21
22 (load (make-pathname :name "set-logical" :type "cl"
23                      :defaults *load-truename*))
24 (set-logical-host-for-pathname "UFFI" *load-truename*)
25
26 ;;; UFFI system definition
27
28 (mk:defsystem :uffi
29     :source-pathname "UFFI:src;"
30     :source-extension "cl"
31     :binary-pathname "UFFI:src;bin;"
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
41  
42
43
44
45
46