Skip to content
Snippets Groups Projects
Commit 847435cc authored by layer's avatar layer
Browse files

2003-08-29 Kevin Layer <layer@crikey>

parent 756abfad
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,13 @@ If there are user-visible changes in this commit, then list the
<standard changelog date stamp>
* <changes go here...>
*******************************************************************************
<no version change>
2003-08-29 Kevin Layer <layer@crikey>
* buildclim.cl: make more like buildcomposer.cl
*******************************************************************************
join from acl62 to trunk on 7/3/03
command:
......
;; Load this file to make a clim image.
;; $Id: buildclim.cl,v 1.6 2002/07/09 20:57:14 layer Exp $
;; $Id: buildclim.cl,v 1.7 2003/11/11 05:34:56 layer Exp $
(excl:build-lisp-image
#+ics "sys:clim.dxl" #-ics "sys:clim8.dxl"
......@@ -23,10 +23,11 @@
:discard-source-file-info t
:discard-xref-info t)
(sys:copy-file
(excl::curpgmname)
(let ((dest
#+(and mswindows ics) "sys:clim.exe"
#+(and mswindows (not ics)) "sys:clim8.exe"
#+(and (not mswindows) ics) "sys:clim"
#+(and (not mswindows) (not ics)) "sys:clim8"))
(ignore-errors (delete-file dest))
(sys:copy-file (excl::curpgmname) dest))
#+(and mswindows ics) "sys:clim.exe"
#+(and mswindows (not ics)) "sys:clim8.exe"
#+(and (not mswindows) ics) "sys:clim"
#+(and (not mswindows) (not ics)) "sys:clim8")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment