From 96a9a46f5f08a94dbef12ca771fb774b84d04776 Mon Sep 17 00:00:00 2001
From: layer <layer>
Date: Mon, 30 Mar 1998 16:37:51 +0000
Subject: [PATCH] on layer64 branch

---
 buildclim.cl | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 buildclim.cl

diff --git a/buildclim.cl b/buildclim.cl
new file mode 100644
index 00000000..fa18e0f1
--- /dev/null
+++ b/buildclim.cl
@@ -0,0 +1,41 @@
+;; Load this file to make a clim image.
+;; $Id: buildclim.cl,v 1.2 1998/03/30 16:37:51 layer Exp $
+
+(excl:generate-application
+ #+ics "climi" #-ics "clim"
+ "./"
+ '(
+   :climg
+   :climxm
+;;;; The rest of the modules are optional.  Include them or not according
+;;;; to your needs:
+   :clim-debug
+   :clim-debugxm
+   :climps
+   :climhpgl
+   #+ignore :climdemo
+   )
+ :autoload-warning nil
+ :image-only t
+ :print-startup-message :default
+ :purify t
+ :debug-on-error t
+ :internal-debug "buildclim.out"
+ :shlib-warning nil
+ :libfasl-warning nil
+ :discard-local-name-info t
+ :discard-source-file-info t
+ :discard-xref-info t)
+
+(sys:copy-file
+ #+(and mswindows ics) "lispi.exe"
+ #+(and mswindows (not ics)) "lisp.exe"
+ #+(and (not mswindows) ics) "lispi"
+ #+(and (not mswindows) (not ics)) "lisp"
+
+ #+(and mswindows ics) "climi.exe"
+ #+(and mswindows (not ics)) "clim.exe"
+ #+(and (not mswindows) ics) "climi"
+ #+(and (not mswindows) (not ics)) "clim"
+
+ :link-ok t)
-- 
GitLab