-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.devel
554 lines (490 loc) · 21.5 KB
/
Makefile.devel
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
# This is the developer's -*- Makefile -*-, not the user's Makefile.
# Do not use it unless you know exactly what you are doing!
# Expects GNU make
# Some important programs:
SHELL = /bin/sh
MAKE = make
PERL = perl
GROFF = nroff -man
# GROFF = groff -mandoc
RM = rm -f
# http://ctags.sourceforge.net
CTAGS = ctags
.PHONY : all build-prerequisites htmldoc makefiles configures check-configures \
update-ansi-tests potfiles fixperms \
view-man view-html check-sbcl install-gcc \
multibuild-linux-x86 multibuild-darwin-powerpc \
build-aux-update gnulib-imported distrib release pre-release \
upload upload-ssh upload-sf upload-gnu \
src-distrib doc-distrib gnu-distrib tag-release tp-mail
all : build-prerequisites makefiles update-ansi-tests potfiles htmldoc
build-prerequisites : check-configures fixperms \
src/version.h \
src/asmi386.h src/ari80386.msvc.c src/sp80386.msvc.c
htmldoc:
make -C doc all html
MAKEMAKE_TMP=src/makemake
makefiles : win32msvc/makefile.msvc7 win32msvc/makefile.msvc6
$(RM) $(MAKEMAKE_TMP)
win32msvc/makefile.msvc6 : $(MAKEMAKE_TMP)
cd src && ./makemake --with-dynamic-ffi \
win32msvc msvc6 > ../win32msvc/makefile.msvc6
win32msvc/makefile.msvc7 : $(MAKEMAKE_TMP)
cd src && ./makemake --with-dynamic-ffi \
win32msvc msvc7 > ../win32msvc/makefile.msvc7
$(MAKEMAKE_TMP) : src/makemake.in version.sh
. ./version.sh; { \
echo "#!/bin/sh" ; \
sed "s/@PACKAGE_VERSION@/$${VERSION_NUMBER}/g" src/makemake.in ; \
} > $(MAKEMAKE_TMP)
chmod a+x $(MAKEMAKE_TMP)
CURDIR=$(shell pwd)
MODULES=berkeley-db clx/new-clx dirkey fastcgi i18n oracle pari pcre dbus \
postgresql rawsock readline regexp syscalls wildcard zlib gtk2 gdbm
CONFIG_H_IN = src/config.h.in $(patsubst %,modules/%/config.h.in,$(MODULES))
MOD_CONFIGURES=$(patsubst %,modules/%/configure,$(MODULES))
CONFIGURES=src/configure $(MOD_CONFIGURES)
GNULIB_USERS = src modules/regexp modules/syscalls modules/wildcard
MAKEFILE_IN = $(addsuffix /gllib/Makefile.in, $(GNULIB_USERS))
$(MAKEFILE_IN) : %/Makefile.in : %/Makefile.am %/../configure.in src/aclocal.m4
cd $* && cd .. && \
(test -f aclocal.m4 || ln -s $(CURDIR)/src/aclocal.m4 .) && \
ln -s $(CURDIR)/src '$$cl_cv_clisp_libdir' && \
automake gllib/Makefile && \
$(RM) '$$cl_cv_clisp_libdir' && \
sed -i -e 's,$$(top_srcdir)/src/build-aux,$$(CLISP_LIBDIR)/build-aux,' \
-e 's,$$(top_srcdir)/$$cl_cv_clisp_libdir,$$(CLISP_LIBDIR),' \
gllib/Makefile.in && \
(test -L aclocal.m4 && $(RM) aclocal.m4 || true)
configures : $(CONFIGURES) $(CONFIG_H_IN) $(MAKEFILE_IN)
src/aclocal.m4 : $(wildcard src/m4/*.m4) $(wildcard src/glm4/*.m4) \
$(addsuffix .in,$(CONFIGURES))
$(RM) configure.ac
cp src/configure.in configure.ac
cat $(addsuffix .in,$(MOD_CONFIGURES)) | \
egrep -v -e 'AC_(INIT|PREREQ|CANONICAL_|GNU_SOURCE|CONFIG_HEADER|OUTPUT)' \
-e 'AC_CONFIG_FILE.*(Makefile|link\.sh)' >> configure.ac
aclocal --output=src/aclocal.m4 -I $(CURDIR)/src/m4 \
$(patsubst %, -I $(CURDIR)/%/glm4, $(GNULIB_USERS))
$(RM) configure.ac
AUTOCONF_FILES = src/aclocal.m4
AUTOCONF_CACHE = autom4te.cache
$(CONFIGURES) : %/configure : %/configure.in $(AUTOCONF_FILES) version.sh
cd $* && autoconf --include=$(CURDIR)/src
$(CONFIG_H_IN) : %/config.h.in : %/configure.in $(AUTOCONF_FILES)
cd $* && autoheader --include=$(CURDIR)/src
# syntax check
check-configures : configures
set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
rm -rf `find . -name $(AUTOCONF_CACHE)`;
ANSITESTS_SVN = svn://common-lisp.net/project/ansi-test/svn/trunk/ansi-tests
update-ansi-tests:
if test -d ansi-tests; then \
cd ansi-tests && \
svn update; \
else \
svn co $(ANSITESTS_SVN); \
fi
# this must not be in "all" because this downloads 23MB XSL + 500kB DTD
update-docbook-utils :
make -C doc docbook-xsl docbook-dtd
CLISP=$(CURDIR)/build/clisp
potfiles :
cd src/po && CLISP='$(CLISP)' $(MAKE) -f Makefile.devel && $(MAKE) -f Makefile.devel clean
fixperms :
./utils/fix-perms.sh
view-man :
grep -v '^#[ie]' doc/_clisp.1 | $(GROFF) -Tascii | less
# all possible browsers, some might not be present, but we do not care
# list GUI first because they put themselves into background
BROWSERS=firefox mozilla netscape opera links lynx
view-html :
grep -v '^#[ie]' doc/_clisp.html > /tmp/clisp.html
for b in $(BROWSERS); do $$b /tmp/clisp.html; done
src/version.h: version.sh
. ./version.sh ; { \
echo "/* generated by Makefile.devel from version.sh */" ; \
echo "#define PACKAGE_NAME \"GNU CLISP\"" ; \
echo "#define PACKAGE_TARNAME \"clisp\"" ; \
echo "#define PACKAGE_VERSION \"$$VERSION_NUMBER ($$RELEASE_DATE)\"" ; \
echo "#define PACKAGE_STRING \"GNU CLISP $$VERSION_NUMBER ($$RELEASE_DATE)\"" ; \
echo "#define PACKAGE_BUGREPORT \"http://clisp.cons.org/\""; \
} > src/version.h
src/asmi386.h : src/asmi386.hh
sed -e 's,//.*$$,,' < src/asmi386.hh > src/asmi386.h
src/ari80386.msvc.c : src/ari80386.d src/asmi386.sh
src/asmi386.sh -no-C < src/ari80386.d > src/ari80386.msvc.c
src/sp80386.msvc.c : src/sp80386.d src/asmi386.sh
src/asmi386.sh -no-C < src/sp80386.d > src/sp80386.msvc.c
# Build and test all essential memory models on a Linux/x86 machine.
MULTIBUILD_OPTIONS =
MULTIBUILD_CFLAGS = -g
multibuild-linux-x86: build-linux-x86-standard-spvw_mixed_blocks-staggered \
build-linux-x86-standard-spvw_mixed_blocks-opposite \
build-linux-x86-standard-spvw_mixed_blocks-opposite-fixedmemsize \
build-linux-x86-standard-spvw_mixed_pages \
build-linux-x86-noexec-spvw_mixed_blocks-staggered \
build-linux-x86-noexec-spvw_mixed_blocks-opposite \
build-linux-x86-noexec-spvw_mixed_blocks-opposite-fixedmemsize \
build-linux-x86-noexec-spvw_mixed_pages \
build-linux-x86-spvw_pure_blocks \
build-linux-x86-wide
build-linux-x86-standard-spvw_mixed_blocks-staggered:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DCONS_HEAP_GROWS_UP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-standard-spvw_mixed_blocks-opposite:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DCONS_HEAP_GROWS_DOWN" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-standard-spvw_mixed_blocks-opposite-fixedmemsize:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DNO_VIRTUAL_MEMORY -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-standard-spvw_mixed_pages:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DNO_SINGLEMAP -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-noexec-spvw_mixed_blocks-staggered:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DCONS_HEAP_GROWS_UP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-noexec-spvw_mixed_blocks-opposite:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DCONS_HEAP_GROWS_DOWN" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-noexec-spvw_mixed_blocks-opposite-fixedmemsize:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DNO_VIRTUAL_MEMORY -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-noexec-spvw_mixed_pages:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DNO_SINGLEMAP -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-spvw_pure_blocks:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DTYPECODES" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-linux-x86-wide:
rm -rf $@
CFLAGS="-O -falign-functions=4 $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DWIDE" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
multibuild-darwin-powerpc: \
build-darwin-powerpc-standard-spvw_mixed_blocks-staggered \
build-darwin-powerpc-standard-spvw_mixed_blocks-opposite \
build-darwin-powerpc-standard-spvw_mixed_blocks-opposite-fixedmemsize \
build-darwin-powerpc-standard-spvw_mixed_pages \
build-darwin-powerpc-noexec-spvw_mixed_blocks-staggered \
build-darwin-powerpc-noexec-spvw_mixed_blocks-opposite \
build-darwin-powerpc-noexec-spvw_mixed_blocks-opposite-fixedmemsize \
build-darwin-powerpc-noexec-spvw_mixed_pages \
build-darwin-powerpc-spvw_pure_blocks \
build-darwin-powerpc-wide
build-darwin-powerpc-standard-spvw_mixed_blocks-staggered:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DCONS_HEAP_GROWS_UP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-standard-spvw_mixed_blocks-opposite:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DCONS_HEAP_GROWS_DOWN" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-standard-spvw_mixed_blocks-opposite-fixedmemsize:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DNO_VIRTUAL_MEMORY -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-standard-spvw_mixed_pages:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DSTANDARD_HEAPCODES -DNO_SINGLEMAP -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-noexec-spvw_mixed_blocks-staggered:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DCONS_HEAP_GROWS_UP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-noexec-spvw_mixed_blocks-opposite:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DCONS_HEAP_GROWS_DOWN" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-noexec-spvw_mixed_blocks-opposite-fixedmemsize:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DNO_VIRTUAL_MEMORY -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-noexec-spvw_mixed_pages:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DLINUX_NOEXEC_HEAPCODES -DNO_SINGLEMAP -DNO_TRIVIALMAP" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-spvw_pure_blocks:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DTYPECODES" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
build-darwin-powerpc-wide:
rm -rf $@
CFLAGS="-O $(MULTIBUILD_CFLAGS)" \
CPPFLAGS="-DWIDE" \
./configure --cbc $(MULTIBUILD_OPTIONS) $@
SRCDIRS=src utils benchmarks emacs modules sacla-tests tests
TAGS : force
$(CTAGS) -e -R --langmap=c:.c.d.f $(SRCDIRS)
tags : force
$(CTAGS) -R --langmap=c:.c.d.f $(SRCDIRS)
# Bootstrap SBCL.
SBCL_VERSION = 0.8.15
SBCL_SOURCE_FILE = sbcl-$(SBCL_VERSION)-source.tar.bz2
SBCL_SOURCE_URL = http://www.haible.de/bruno/$(SBCL_SOURCE_FILE)
check-sbcl:
./configure --cbc build-for-sbcl
test -f $(SBCL_SOURCE_FILE) || wget $(SBCL_SOURCE_URL)
rm -rf sbcl-$(SBCL_VERSION)
bunzip2 -c < $(SBCL_SOURCE_FILE) | tar xvf -
clisp=$(CURDIR)/build-for-sbcl/clisp; \
cd sbcl-$(SBCL_VERSION) && sh make.sh $$clisp
# Build a GCC from source.
# Note that this requires ca. 1 GB of disk space.
GCC_VERSION = 3.4.3
GCC_SOURCE_FILE = gcc-$(GCC_VERSION).tar.bz2
GCC_SOURCE_URL = http://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VERSION)/$(GCC_SOURCE_FILE)
# Put here the --prefix that you would like to use for installing gcc.
# It should *not* be the same --prefix as you use for other programs.
GCC_INSTALL_DIR = $(shell dirname $$(dirname $$(which clisp | head -1)))/inst-gcc-$(GCC_VERSION)
install-gcc:
test -f $(GCC_SOURCE_FILE) || wget $(GCC_SOURCE_URL)
rm -rf gcc-$(GCC_VERSION) gcc-$(GCC_VERSION)-build
bunzip2 -c < $(GCC_SOURCE_FILE) | tar xvf -
mkdir gcc-$(GCC_VERSION)-build
gcc_install_dir='$(GCC_INSTALL_DIR)' ; \
cd gcc-$(GCC_VERSION)-build && ../gcc-$(GCC_VERSION)/configure --prefix="$$gcc_install_dir" --enable-shared --enable-threads `if grep __GLIBC__ /usr/include/features.h > /dev/null 2>/dev/null; then echo --enable-__cxa_atexit; fi` --enable-version-specific-runtime-libs --enable-languages=c,c++ --enable-nls
cd gcc-$(GCC_VERSION)-build && make bootstrap
cd gcc-$(GCC_VERSION)-build && make install
rm -rf gcc-$(GCC_VERSION)-build
rm -rf gcc-$(GCC_VERSION)
GNULIB_CVS_ROOT = :pserver:[email protected]:/gnulib.git
GNULIB_CVS_REPOSITORY = HEAD
GNULIB_GIT = git://git.savannah.gnu.org/gnulib.git
GNULIB_CHECKOUT := gnulib
update-gnulib:
if test -d $(GNULIB_CHECKOUT); then \
cd $(GNULIB_CHECKOUT) ; \
if test -d .git; then git pull; else cvs update -d -P; fi \
else \
if git --version >/dev/null 2>&1; then \
git clone "$(GNULIB_GIT)" $(GNULIB_CHECKOUT) ; \
else cvs -d "$(GNULIB_CVS_ROOT)" checkout -d $(GNULIB_CHECKOUT) $(GNULIB_CVS_REPOSITORY); fi \
fi
# it is important to get ltmain.sh and libtool.m4 from the same version of
# libtool. Don't rely on what's installed in /usr/share or similar.
LIBTOOL_VERSION = 2.2
LIBTOOL_SOURCE_FILE = libtool-$(LIBTOOL_VERSION).tar.gz
LIBTOOL_SOURCE_URL = http://ftp.gnu.org/gnu/libtool/$(LIBTOOL_SOURCE_FILE)
GTK2_SVN_ROOT = http://svn.gnome.org/svn/gtk+/trunk/m4macros
GNULIB_AUX=config.guess config.rpath config.sub depcomp install-sh missing
# it is important not to have "*.m4" targets with ": force" dependencies
# because otherwise every make will rebuild all configures
build-aux-update : update-gnulib force
for f in $(GNULIB_AUX); do \
cp -afuv $(GNULIB_CHECKOUT)/build-aux/$$f src/build-aux; \
done
cp -afuv /usr/share/automake*/compile src/build-aux
test -f $(LIBTOOL_SOURCE_FILE) || wget $(LIBTOOL_SOURCE_URL)
rm -rf libtool-$(LIBTOOL_VERSION)
gunzip -c < $(LIBTOOL_SOURCE_FILE) | tar xf -
cp -afuv libtool-$(LIBTOOL_VERSION)/libltdl/config/ltmain.sh src/build-aux/ltmain.sh
cp -afuv libtool-$(LIBTOOL_VERSION)/libltdl/m4/libtool.m4 src/m4/libtool.m4
rm -rf libtool-$(LIBTOOL_VERSION) $(LIBTOOL_SOURCE_FILE)
cd src/m4; rm -fv gtk-2.0.m4; wget $(GTK2_SVN_ROOT)/gtk-2.0.m4
# gnulib-tool hack to support multiple gllib directories:
# headers are generated for each gllib differently, depending on which
# features are actually used, so we need to be able to include all these
# generated headers without fear that one will shadow another, so we
# prepend the macro-prefix before the guard macros
GNULIB_TOOL_PATCH = gnulib-tool.patch
GNULIB_TOOL = $(GNULIB_CHECKOUT)/gnulib-tool-patched --import \
--no-vc-files --no-libtool --no-changelog --aux-dir=src/build-aux
# unistd is needed in both syscalls and core separately because unistd.h
# is generated differently depending on whether gethostname (required by
# uname) is present
GNULIB_CORE = no-c++ stdint stdbool havelib gettext localcharset \
uniwidth/width streq uniname/uniname unitypes link-follow \
nocrash libsigsegv gnu-make gettimeofday getpagesize sys_time
# these modules are included as dependencies by regexp and fnmatch
# so we include them here so that they appear once in src/gl*
# instead of N times in $(GNULIB_USERS)/gl*
GNULIB_MODULES = alloca-opt alloca extensions include_next verify string \
mbsinit wchar wctype mbrtowc mbsrtowcs memmove memcmp memchr nl_langinfo
GNULIB_COMMON = $(GNULIB_CORE) $(GNULIB_MODULES)
GNULIB_AVOID = $(addprefix --avoid=, $(GNULIB_COMMON))
GNULIB_IMPORTED_LOG = /tmp/gnulib-imported.log
gnulib-imported : update-gnulib force
$(RM) configure.ac; ln -sv src/configure.in configure.ac
$(RM) $(addsuffix /glm4/gnulib-cache.m4, $(GNULIB_USERS)) \
$(GNULIB_IMPORTED_LOG)
cp $(GNULIB_CHECKOUT)/gnulib-tool $(GNULIB_CHECKOUT)/gnulib-tool-patched
patch $(GNULIB_CHECKOUT)/gnulib-tool-patched $(GNULIB_TOOL_PATCH)
$(GNULIB_TOOL) --source-base=src/gllib --m4-base=src/glm4 \
$(GNULIB_COMMON) | tee -a $(GNULIB_IMPORTED_LOG)
$(GNULIB_TOOL) --source-base=modules/syscalls/gllib \
--macro-prefix=sc_gl --m4-base=modules/syscalls/glm4 \
$(GNULIB_AVOID) mktime strftime strptime uname \
| tee -a $(GNULIB_IMPORTED_LOG)
$(GNULIB_TOOL) --source-base=modules/regexp/gllib \
--macro-prefix=rx_gl --m4-base=modules/regexp/glm4 \
$(GNULIB_AVOID) regex | tee -a $(GNULIB_IMPORTED_LOG)
$(GNULIB_TOOL) --source-base=modules/wildcard/gllib \
--macro-prefix=wc_gl --m4-base=modules/wildcard/glm4 \
$(GNULIB_AVOID) fnmatch-gnu | tee -a $(GNULIB_IMPORTED_LOG)
$(RM) configure.ac
for d in $(GNULIB_USERS); do $(RM) `find $$d/gllib -name \*~`; done
for d in $(GNULIB_USERS); do $(RM) `find $$d/glm4 -name \*~`; done
cd src/glm4; \
for f in *.m4; do \
if test -f ../m4/$$f; then \
echo == $$f; \
if cmp $$f ../m4/$$f; then \
cd ../m4; cvs rm -f $$f; cd ../glm4; \
fi; \
fi; \
done
$(RM) $(GNULIB_CHECKOUT)/gnulib-tool-patched
@echo the import log is in $(GNULIB_IMPORTED_LOG)
distrib : fixperms src-distrib doc-distrib gnu-distrib
# start gpg agent before "make release"!
release : distrib upload tag-release
# 2-3 weeks before a release
# manually: check for new versions of
# libsvm, netica api, postgresql, berkeley-db, dbus
pre-release : gnulib-imported build-aux-update tp-mail
## RELEASE TODO:
# Before doing a "make distrib":
# * update version.sh, src/NEWS, doc/history.xml
# * "make -f Makefile.devel all"
# === Note that for clisp to report its version correctly, src/version.h and
# === src/configure must be regenerated after version.sh is updated
# web pages to be updated:
# * www/index.html, www/impnotes.html, www/clisp.html, www/impnotes/
# dates to be updated (1st release each calendar year):
# * banner in src/spvw.d
# * COPYRIGHT
# * clisp-doc-copyright in doc/impent.xml
# * AC_COPYRIGHT in src/configure.in
## CLISP release announcements go to:
# news:comp.lang.lisp
# news:comp.os.linux.announce ([email protected])
# http://freshmeat.net/projects/clisp/
# https://sourceforge.net/news/submit.php?group_id=1355
# WIKIs to be updated: http://en.wikipedia.org/wiki/CLISP
VER=$(shell . ./version.sh ; echo $$VERSION_NUMBER)
REL=$(shell . ./version.sh ; echo $$RELEASE_DATE)
ARCHIVE=../archives/$(VER)
SUFFIX=
# The distribution's top directory is called TOPDIR here.
TOPDIR=clisp-$(VER)$(SUFFIX)
SRC_DIST=$(ARCHIVE)/$(TOPDIR).tar.bz2
SRC_DIST1=$(ARCHIVE)/$(TOPDIR).tar.gz
DOC_DIST=$(ARCHIVE)/$(TOPDIR)-impnotes.zip
UPLOAD=$(SRC_DIST) $(SRC_DIST1) $(DOC_DIST) src/NEWS
SSHUP=podval:~/public_html/clisp/
GNU_TOP=$(ARCHIVE)/NEWS $(ARCHIVE)/SUMMARY
GNU_SRC=$(SRC_DIST1) $(SRC_DIST)
GNU_DIST=$(GNU_TOP) $(GNU_SRC)
GNU_SYM=$(ARCHIVE)/$(TOPDIR).symlink.directive
# Assume tar/bzip2/gzip are present
# set this if you are using GNU tar
EXCLUDE=--exclude CVS --exclude \*.fas --exclude \*.lib --exclude \*.obj \
--exclude \*.exe --exclude \*.mem --exclude \*.o --exclude build \
--exclude .cvsignore --exclude \*~ --exclude .\#\* \
--exclude $(AUTOCONF_CACHE) --exclude tmp --exclude queued \
--exclude libtool-\*.tar.gz \
`sed "s/^/--exclude /" doc/.cvsignore` \
--exclude TAGS --exclude \*.elc --exclude \*.orig --exclude \*.rej
T = $(TOPDIR)
SOURCES1 = $T/ANNOUNCE $T/COPYRIGHT $T/GNU-GPL $T/INSTALL $T/SUMMARY $T/clisp.spec $T/configure
SOURCES2 = $T/src
SOURCES4 = $T/utils
SOURCES5 = $T/unix $T/win32msvc
SOURCES6 = $T/modules
# for developers only: $T/benchmarks $T/sacla-tests $T/ansi-tests
SOURCES7 = $T/tests $T/emacs $T/doc $T/Makefile.devel
SOURCES = $(SOURCES1) $(SOURCES2) $(SOURCES4) $(SOURCES5) $(SOURCES6) $(SOURCES7)
$(SRC_DIST1) : $(SRC_DIST)
bzcat -v $(SRC_DIST) | gzip -9 -v > $(SRC_DIST1)
upload-ssh : $(SRC_DIST1) force
for h in $(SSHUP) ; do scp $(UPLOAD) $${h}; done
upload-sf : $(SRC_DIST1) force
rsync -avP -e ssh $(UPLOAD) frs.sf.net:/home/frs/project/c/cl/clisp/clisp/$(VER)/
upload-gnu : force # gnu-distrib -- do not re-sign everything
UP=""; for f in $(GNU_DIST); do \
UP=$${UP}" $$f $$f.sig $$f.directive.asc"; done; \
lftp ftp://ftp-upload.gnu.org/incoming/ftp -e "mput $${UP} $(GNU_SYM).asc; quit"
upload : upload-ssh upload-sf upload-gnu
src-distrib : force
mkdir -p $(ARCHIVE)
ln -s . $(TOPDIR)
tar cvfhj $(SRC_DIST) $(EXCLUDE) $(SOURCES)
$(RM) $(TOPDIR)
echo $(SRC_DIST)
doc-distrib : force
mkdir -p $(ARCHIVE)
ln -s . $(TOPDIR)
zip -9vor $(DOC_DIST) $(TOPDIR)/doc/html -x \*.cvsignore -x \*.symlinks -x \*CVS\* -x .\#\* -x \*~
$(RM) $(TOPDIR)
# http://www.gnu.org/prep/maintain/html_node/Automated-Upload-Procedure.html
GPG=gpg --use-agent --yes
gnu-distrib : $(SRC_DIST1) force
mkdir -p $(ARCHIVE)
cp -f src/NEWS SUMMARY $(ARCHIVE)
for f in $(GNU_DIST); do $(GPG) -b $$f; done
for f in $(GNU_TOP); do \
$(RM) $$f.directive; \
echo "version: 1.1" >> $$f.directive; \
echo "directory: clisp" >> $$f.directive; \
echo "filename: "`basename $$f` >> $$f.directive; \
$(GPG) --clearsign $$f.directive; \
done
for f in $(GNU_SRC); do \
$(RM) $$f.directive; \
echo "version: 1.1" >> $$f.directive; \
echo "directory: clisp/release/$(VER)" >> $$f.directive; \
echo "filename: "`basename $$f` >> $$f.directive; \
$(GPG) --clearsign $$f.directive; \
done
echo "version: 1.1" > $(GNU_SYM)
echo "directory: clisp/release" >> $(GNU_SYM)
echo "rmsymlink: latest" >> $(GNU_SYM)
echo "symlink: $(VER) latest" >> $(GNU_SYM)
$(GPG) --clearsign $(GNU_SYM)
tag-release : force
cvs tag -FR clisp_$(subst .,_,$(VER))-$(REL) .
MESSAGE_FILE=tp_message
TP_SUFFIX=-pre1
tp-mail : force
echo "Domain: clisp" > $(MESSAGE_FILE)
if test -n "$(TP_SUFFIX)"; then \
f=`make -f Makefile.devel src-distrib SUFFIX=$(TP_SUFFIX) | tail -n 2 | head -n 1`; \
for h in $(SSHUP) ; do scp $$f $${h}; done \
else f=$(SRC_DIST); fi; f=`basename $$f`; \
echo "Location: http://clisp.podval.org/$$f" >> $(MESSAGE_FILE); \
cat $(MESSAGE_FILE); \
mail -s "CLISP pre-release $$f is available" \
-c [email protected] $(TP_EMAIL) < $(MESSAGE_FILE)
$(RM) $(MESSAGE_FILE)
force :