summaryrefslogtreecommitdiffstats
path: root/Makefile.in
blob: db0864bae95236cd94e3889fc38f5b9128557093 (plain)
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
# Copyright (C) 1990, 1991, 1992, 1993 Aubrey Jaffer.	-*- Makefile -*-
# This file is part of SCM.
# 
# SCM is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# SCM is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
# License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with SCM; see the file COPYING.  If not, write to the Free
# Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

#
# Makefile for SCM
#

# Ultrix 2.2 make doesn't expand the value of VPATH.
srcdir = @srcdir@

CC = @CC@

CFLAGS = @CFLAGS@ -I. -I$(srcdir)
LDFLAGS = @LDFLAGS@

# Define these for your system as follows:
#	-DRTL		To create a run-time library only (no
#			interactive front end).
#	-DRECKLESS	To turn most SCM error schecking off.
#	-DCAUTIOUS	To always check the number of arguments to
#			interpreted closures.
#	-DIO_EXTENSIONS	To get primitives such as chdir, delete-file,
#			file-opisition, and pipes.
#	-DPROMPT=\"..\"	To change the default prompt.
#	-DFLOATS	To turn on support for inexact numbers.
#	-DSINGLES	To use single-precision floats (if a float is
#			the same size as a long).
#	-DSINGLESONLY	To make all inexact real numbers to be single
#			precision.  Only useful if SINGLES is also
#			defined.
#	-DGC_FREE_SEGMENTS
#			To have all segments of unused heap be freed
#			up after garbage collection.  Do not define if
#			you never want the heap to shrink.
#	-DTICKS		If you want the ticks and ticks-interrupt
#			functions defined.
#	-DBRACKETS_AS_PARENS
#			To have square brackets read as parentheses
#			in forms.
#	-DMEMOIZE_LOCALS To speed up most local variable references.
#			You will need to remove this and recompile
#			eval.c if you use very large or deep
#			environments (more than 4095 bound variables
#			in one procedure).
#	-DENGNOT	To use engineering notation instead of
#			scientific notation.
#	-DSICP		To make SCM more compatible with the Scheme used
#			in Abelson & Sussman's book.
#	-DSTACK_LIMIT	To limit the maximum growth of the stack (you
#			almost certainly don't want this).
# See also `scmconfig.h' and `scmfig.h'.
defines = @DEFS@ \
	-DCAUTIOUS -DARRAYS -DBIGNUMS -DCCLO \
	-DFLOATS -DIO_EXTENSIONS -DMEMOIZE_LOCALS -DGC_FREE_SEGMENTS

# If you are using user extension files, change INITS and FINALS
# below.  INITS makes up the initialization calls for user extension
# files.  FINALS defines the finalization calls for user extension
# files.

# File	INITS		FINALS		functions defined
#
# sc2.c	init_sc2\(\)			substring-move-left!,
#					substring-move-right!,
#					substring-fill!, append!, last-pair
# rgx.c	init_rgx\(\)			regcomp, regexec (POSIX)
# crs.c	init_curses\(\) lendwin\(\)	... lots ...

#INITS = -DINITS=init_sc2\(\)\;init_rgx\(\)\;init_crs\(\)\;init_edline\(\)\;
INITS = -DINITS=init_sc2\(\)\;init_rgx\(\)\;
#FINALS = -DFINALS=lendwin\(\)\;
FINALS = -DFINALS=\;

# If you are using rgx.c, set the next line to point to the include
# directory where your POSIX regexp include files live (if you are using
# GNU regex).
RGXFLAGS = -I/usr/include/regex

# If your system needs extra libraries loaded in, define them here.
#	-lm		For floating point math (needed).
#	-lcurses	For crs.c extensions.
#	-lncurses	For curses on Linux (curses has bugs).
#	-lterm{cap,lib}	May be required for curses support.
#	-lregex		For POSIX regexp support (rgx.c).
#LOADLIBES = @LIBS@ -lm -lregex -lncurses -lreadline
LOADLIBES = @LIBS@ -lm -lregex

# Any extra object files your system needs.
extras = @LIBOBJS@

# Common prefix for machine-independent installed files.
prefix = /usr/local
# Common prefix for machine-dependent installed files.
exec_prefix = $(prefix)

# Name under which to install SCM.
instname = scm
# Directory to install `scm' in.
bindir = $(exec_prefix)/bin
# Directory in which to install Init.scm, COPYING, and Transcen.scm.
libdir = $(exec_prefix)/lib/scm
# Directory to search by default for included makefiles.
includedir = $(prefix)/include
# Directory to install the Info files in.
infodir = $(prefix)/info
# Directory to install the man page in.
mandir = $(prefix)/man/man$(manext)
# Number to put on the man page filename.
manext = 1
# Directory to perform pre-install tests in.
testdir = $(srcdir)

# Program to install `scm'.
INSTALL_PROGRAM = @INSTALL_PROGRAM@
# Program to install the man page.
INSTALL_DATA = @INSTALL_DATA@
# Generic install program.
INSTALL = @INSTALL@

# Program to format Texinfo source into Info files.
MAKEINFO = makeinfo
# Program to format Texinfo source into DVI files.
TEXI2DVI = texi2dvi

# Programs to make tags files.
ETAGS = etags
CTAGS = ctags -tw

# You should not need to change below this line.

SHELL = /bin/sh
DFLAG = -DIMPLINIT=\"$(libdir)/Init.scm\"
TDFLAG = -DIMPLINIT=\"$(testdir)/Init.scm\"
# nunix = nonunix
nunix = $(srcdir)
# examples = examples
examples = $(srcdir)
ffiles = continue.o time.o repl.o fscl.o sys.o feval.o subr.o sc2.o \
funif.o rope.o ramap.o findexec.o rgx.o #edline.o crs.o 
fifiles = continue.o time.o repl.o iscm.o fscl.o sys.o feval.o subr.o \
sc2.o funif.o rope.o ramap.o findexec.o #rgx.o
efiles = time.o repl.o escl.o sys.o eeval.o subr.o sc2.o eunif.o #rgx.o
cfiles = $(srcdir)/scm.c $(srcdir)/time.c $(srcdir)/repl.c \
	$(srcdir)/scl.c $(srcdir)/sys.c $(srcdir)/eval.c \
	$(srcdir)/subr.c $(srcdir)/sc2.c $(srcdir)/unif.c \
	$(srcdir)/rgx.c $(srcdir)/crs.c $(srcdir)/dynl.c $(srcdir)/findexec.c
hfiles = $(srcdir)/scm.h $(srcdir)/scmfig.h scmconfig.h \
	$(srcdir)/setjump.h $(srcdir)/patchlvl.h
ifiles = Init.scm Transcen.scm
tfiles = $(examples)/test.scm $(examples)/example.scm \
	$(examples)/pi.scm $(examples)/pi.c $(examples)/split.scm
dfiles = $(srcdir)/README $(srcdir)/COPYING $(srcdir)/scm.1 \
	$(srcdir)/QUICKREF $(srcdir)/MANUAL $(srcdir)/ChangeLog \
	$(srcdir)/code.doc $(srcdir)/ANNOUNCE
mfiles = Makefile $(nunix)/makefile.msc $(nunix)/makefile.bor \
	$(nunix)/makefile.tur $(nunix)/makefile.djg \
	$(nunix)/makefile.emx $(nunix)/makefile.qc \
	$(nunix)/compile.amiga $(nunix)/link.amiga \
	$(nunix)/makefile.aztec $(nunix)/makefile.ast \
	$(nunix)/makefile.prj $(nunix)/dmakefile \
	$(nunix)/makefile.wcc
vfiles = $(nunix)/setjump.mar $(nunix)/VMSBUILD.COM $(nunix)/VMSGCC.COM
afiles = $(dfiles) $(cfiles) $(hfiles) $(ifiles) $(tfiles) $(mfiles) $(vfiles)

.SUFFIXES:
.SUFFIXES: .o .c .h .ps .dvi .info .texinfo .scm

.PHONY: all
all: scm

# -DINITS= the initialization calls for user extension files.
# -DFINALS= the finalialization calls for user extension files.
dbscm: escm.a sc2.o $(srcdir)/../wb/db.a $(srcdir)/scm.c $(srcdir)/scm.h \
		$(srcdir)/scmfig.h $(srcdir)/patchlvl.h Makefile
	$(CC) -o dbscm $(CFLAGS) $(INITS)init_db\(\)\;init_rgx\(\) \
		$(FINALS)final_db\(\) $(defines) $(srcdir)/scm.c \
		escm.a $(srcdir)/../wb/db.a $(LOADLIBES) $(extras)
	rm escm.a
curscm: escm.a crs.o
	$(CC) -o curscm $(CFLAGS) $(INITS)init_curses\(\)\;init_rgx\(\) \
		$(FINALS)lendwin\(\) $(srcdir)/scm.c crs.o escm.a -lcurses \
		$(LOADLIBES) $(extras)
	rm escm.a
dscm: dscm.a main.o
	$(CC) -o dscm $(CFLAGS) main.o -ldld
dscm.a: $(efiles) Makefile dynl.o $(srcdir)/scm.c
	$(CC) $(CFLAGS) -DRTL $(INITS)init_dynl\(\) -c $(srcdir)/scm.c
	ar crvs dscm.a scm.o dynl.o $(efiles) $(LOADLIBES)
dynl.o: $(srcdir)/dynl.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		Makefile
	$(CC) $(CFLAGS) -DDLD -DRTL -c $(srcdir)/dynl.c

instscm: $(fifiles)
	$(CC) -o instscm $(fifiles) $(LOADLIBES) $(extras)

scm: $(ffiles) fscm.o
	$(CC) -o scm $(ffiles) fscm.o $(LOADLIBES) $(extras)
fscm.o: $(srcdir)/scm.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h $(srcdir)/patchlvl.h
	$(CC) $(CFLAGS) $(TDFLAG) $(defines) -c $(FFLAGS) $(INITS) \
		$(FINALS) $(srcdir)/scm.c
	mv scm.o fscm.o

iscm.o: $(srcdir)/scm.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h $(srcdir)/patchlvl.h
	$(CC) $(CFLAGS) $(DFLAG) $(defines) -c $(FFLAGS) $(INITS) \
		$(FINALS) $(srcdir)/scm.c
	mv scm.o iscm.o

fscl.o: $(srcdir)/scl.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(FFLAGS) $(srcdir)/scl.c
	mv scl.o fscl.o
feval.o: $(srcdir)/eval.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(FFLAGS) $(srcdir)/eval.c
	mv eval.o feval.o
funif.o: $(srcdir)/unif.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(FFLAGS) $(srcdir)/unif.c
	mv unif.o funif.o

escm: $(efiles) escm.o
	$(CC) -o escm $(efiles) escm.o $(LOADLIBES) $(extras)
escm.o: $(srcdir)/scm.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h $(srcdir)/patchlvl.h
	$(CC) $(CFLAGS) $(defines) -c $(INITS) $(FINALS) $(srcdir)/scm.c
	mv scm.o escm.o
escl.o: $(srcdir)/scl.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/scl.c
	mv scl.o escl.o
eeval.o: $(srcdir)/eval.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/eval.c
	mv eval.o eeval.o
eunif.o: $(srcdir)/unif.c $(srcdir)/scm.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c unif.c
	mv unif.o eunif.o

repl.o: $(srcdir)/repl.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		$(srcdir)/setjump.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(TDFLAG) $(srcdir)/repl.c
sys.o: $(srcdir)/sys.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		$(srcdir)/setjump.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/sys.c
continue.o: $(srcdir)/continue.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		$(srcdir)/setjump.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/continue.c
rope.o: $(srcdir)/rope.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		$(srcdir)/setjump.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/rope.c
ramap.o: $(srcdir)/ramap.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		$(srcdir)/setjump.h scmconfig.h
		$(CC) $(CFLAGS) $(defines) -c $(srcdir)/ramap.c
time.o: $(srcdir)/time.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/time.c
subr.o: $(srcdir)/subr.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/subr.c
sc2.o: $(srcdir)/sc2.c $(srcdir)/scm.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/sc2.c
rgx.o: $(srcdir)/rgx.c $(srcdir)/scm.h Makefile scmconfig.h
	$(CC) $(CFLAGS) $(defines) $(RGXFLAGS) -c rgx.c
crs.o: $(srcdir)/crs.c $(srcdir)/scm.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c crs.c
edline.o: $(srcdir)/edline.c $(srcdir)/scm.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c edline.c
findexec.o: $(srcdir)/findexec.c
	$(CC) $(CFLAGS) $(defines) -c $(srcdir)/findexec.c

both: scm escm

$(srcdir)/proto.h: $(cfiles)
	rm -f $(srcdir)/proto.h
	mkproto $(cfiles) > $(srcdir)/proto.h

libscm.a: rtlscm.o $(ffiles)
	rm -f libscm.a
	ar rc libscm.a rtlscm.o $(ffiles)
	$(RANLIB) libscm.a

rtlscm.o: $(srcdir)/scm.c $(srcdir)/scm.h $(srcdir)/scmfig.h \
		$(srcdir)/patchlvl.h scmconfig.h
	$(CC) $(CFLAGS) $(defines) -c $(FFLAGS) -DRTL $(INITS)init_user_scm\(\) \
	$(FINALS) $(srcdir)/scm.c
	mv scm.o rtlscm.o

.PHONY: install installdirs
install: installdirs \
	$(bindir)/$(instname) $(mandir)/$(instname).$(manext) \
	$(libdir)/Init.scm $(libdir)/Transcen.scm $(libdir)/COPYING

installdirs:
	$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) \
		$(mandir) $(libdir)

$(bindir)/$(instname): instscm
	$(INSTALL_PROGRAM) instscm $@.new
# Some systems can't deal with renaming onto a running binary.
	-rm -f $@.old
	-mv $@ $@.old
	mv $@.new $@

$(mandir)/$(instname).$(manext): $(srcdir)/scm.1
	$(INSTALL_DATA) $(srcdir)/scm.1 $@

$(libdir)/Init.scm: $(srcdir)/Init.scm
	$(INSTALL_DATA) $(srcdir)/Init.scm $@

$(libdir)/Transcen.scm: $(srcdir)/Transcen.scm
	$(INSTALL_DATA) $(srcdir)/Transcen.scm $@

$(libdir)/COPYING: $(srcdir)/COPYING
	$(INSTALL_DATA) $(srcdir)/COPYING $@

.PHONY: tar shar dclshar com zip pubzip
tar: scm.tar
shar: scm.shar
dclshar: scm.com
com: scm.com
zip: scm.zip
scm.tar: temp/scm
	cd temp; tar chf ../scm.tar scm
	chmod 664 scm.tar
scm.shar: temp/scm
	cd temp; shar scm >../scm.shar
	chmod 664 scm.shar
scm.com: temp/scm
	cd temp; dclshar scm >../scm.com
	chmod 664 scm.com
scm.zip: temp/scm
	cd temp; zip -r ../scm.zip scm
	chmod 664 scm.zip
pubzip: temp/scm
	cd temp; zip -ru ../../pub/scm.zip scm
	chmod 664 ../pub/scm.zip

temp/scm: $(afiles)
	-rm -rf temp
	mkdir temp
	mkdir temp/scm
	ln $(afiles) temp/scm

.PHONY: dist tar.Z tar.gz shar.Z
dist: tar.gz
tar.Z: scm.tar.Z
tar.gz: scm.tar.gz
shar.Z: scm.shar.Z
scm.tar.Z: scm.tar
	-rm -f scm.tar.Z
	compress scm.tar
	chmod 664 scm.tar.Z
scm.tar.gz: scm.tar
	-rm -f scm.tar.gz
	gzip scm.tar
	chmod 664 scm.tar.gz
scm.shar.Z: scm.shar
	-rm -f scm.shar.Z
	compress scm.shar
	chmod 664 scm.shar.Z

.PHONY: pubdiffs distdiffs
pubdiffs: temp/scm
	mv temp/scm temp/nscm
	cd temp;unzip ../../pub/scm.zip
	-rm -f scm.diffs
	-diff -c temp/scm temp/nscm > scm.diffs
	-rm -rf temp
	ls -l scm.diffs
distdiffs: temp/scm
	mv temp/scm temp/nscm
	cd temp;zcat ../../dist/scm*.tar.gz | tar xvf -
	-rm -f scm.pat
	-diff -c temp/scm temp/nscm > scm.pat
	-rm -rf temp
	ls -l scm.pat

.PHONY: checks check echeck
checks: check echeck
check: ./scm test.scm
	echo '(test-sc4)(test-cont)(test-inexact)(gc)(exit (length errs))' \
	| ./scm test.scm
echeck: ./escm test.scm
	echo '(test-sc4)(test-cont)(gc)(exit (length errs))' \
	| ./escm test.scm

.PHONY: lint
lint: lints
lints: $(cfiles) $(hfiles)
	lint $(CFLAGS) $(cfiles) | tee lints
#	lint $(CFLAGS) $(cfiles) | tee lintes

# Seds to help find names not unique in first 8 characters (name8s).
# for BSD nm format
# SED_TO_STRIP_NM = sed -e '/.*\.o$$/d' -e 's/.* _//' -e 's/.* T //'
#old, bad for T [^_] on suns: SED_TO_STRIP_NM=sed -e '/.*\.o$$/d' -e 's/.* _//'
# For a System V nm where plain C identifiers have _ prepended:
#SED_TO_STRIP_NM = sed -e '/^_[A-Za-z][A-za-z0-9_]*[ 	|].*|extern|!d' -e 's/|/ /g' -e 's/^_//'
# For a System V nm where plain C identifiers have nothing prepended:
#SED_TO_STRIP_NM = sed -e '/^[A-Za-z][A-za-z0-9_]*[ 	|].*|extern|!d' -e 's/|/ /g'
SED_TO_STRIP_NM = :

.PHONY: name8
name8: name8s
name8s: scm
	nm scm |\
	$(SED_TO_STRIP_NM) |\
	sort -u|\
	awk '{	if (substr(l,1,8)==substr($$1,1,8)) {\
			if (p) print l;\
			print $$1;p=0;stat=1\
		}else p=1;\
		l=$$1\
	     }END{exit stat}' - |\
	tee name8s

tagsrcs = $(hfiles) $(cfiles) $(ifiles) $(mfiles) $(vfiles) \
	MANUAL code.doc README
TAGS: $(tagsrcs)
	$(ETAGS) $(tagsrcs)
tags: $(tagsrcs)
	$(CTAGS) $(tagsrcs)

.PHONY: clean cleanish realclean
clean:
	-rm -f *~ \#* *.o *\# *.orig *.rej a.out core lints tmp*
	-rm -rf temp hobtemp
cleanish:
	-rm -f *~ \#* *\# *.orig *.rej a.out core lints tmp*
	-rm -rf temp hobtemp
distclean:
	-rm -f *~ \#* *.o *\# *.orig *.rej a.out core TAGS lints tmp* \
		scmconfig.h config.status
	-rm -rf temp hobtemp

Makefile: config.status $(srcdir)/Makefile.in
	$(SHELL) config.status
scmconfig.h: stamp-config ;
stamp-config: config.status $(srcdir)/scmconfig.h.in
	$(SHELL) config.status
	touch stamp-config

configure: configure.in
	autoconf $(ACFLAGS)
scmconfig.h.in: configure.in
	autoheader $(ACFLAGS)

# This tells versions [3.59,3.63) of GNU make not to export all variables.
.NOEXPORT:

# Automatically generated dependencies will be put at the end of the file.