-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildit.cl
51 lines (44 loc) · 1.31 KB
/
buildit.cl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(in-package :user)
(setq excl::*break-on-warnings* t)
(declaim (optimize (speed 3)))
(compile-file "renpics.cl")
(generate-application
"renpics"
"renpics/"
'(:seq2 "renpics.fasl")
:allow-existing-directory t
:application-files '("readme.txt")
:restart-init-function 'main
:include-ide nil
:include-compiler nil
:us-government nil
:presto nil
:discard-local-name-info t
:discard-source-file-info t
:discard-xref-info t
:load-xref-info nil
:load-source-file-info nil
:record-xref-info nil
:record-source-file-info nil
:include-devel-env nil
:include-tpl t ;; nil -----workaround bug in patch paa003.001
:newspace 6144
:oldspace 256000
:show-window :normal
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:autoload-warning nil
:purify nil
:runtime :standard
:suppress-allegro-cl-banner t
:print-startup-message nil ; don't print ACL startup messages
:read-init-files nil ; don't read ACL init files
:ignore-command-line-arguments t ; ignore ACL (not app) cmd line options
)
#+mswindows
(progn
(delete-file "renpics/renpics.exe")
(sys:copy-file "sys:buildi.exe" "renpics/renpics.exe"))
;; I believe :ignore-command-line-arguments makes the following unncessary
#+ignore
(with-open-file (s "renpics/renpics.rc" :direction :output)
(format s ".command-line: --~%"))