-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildit.cl
48 lines (41 loc) · 1.16 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
(in-package :user)
(setq excl::*break-on-warnings* t)
(declaim (optimize (speed 3)))
(compile-file "pubpics.cl")
(generate-application
"pubpics"
"pubpics/"
'(:trace #-mswindows :process "pubpics.fasl")
:restart-init-function 'pubpics-init-function
: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 nil
:newspace 6144
:oldspace 256000
:show-window :normal
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:autoload-warning nil
:purify nil
:runtime :standard
:suppress-allegro-cl-banner t
)
#+mswindows
(progn
(delete-file "pubpics/pubpics.exe")
(sys:copy-file "sys:buildi.exe" "pubpics/pubpics.exe"))
(with-open-file (s "pubpics/pubpics.rc" :direction :output)
(format s ".command-line: --~%"))
(sys:copy-file "home.gif" "pubpics/home.gif")
(sys:copy-file "next.gif" "pubpics/next.gif")
(sys:copy-file "previous.gif" "pubpics/previous.gif")
(sys:copy-file "blank.gif" "pubpics/blank.gif")