aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f4465f50b95209a7b6223af4331366f3755f546b (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
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
# Copyright (C) 1990-1999 Free Software Foundation, Inc.
#
# This program 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.
#
# This program 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 this software; see the file COPYING.  If not, write to
# the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111, USA.
#
# As a special exception, the Free Software Foundation gives permission
# for additional uses of the text contained in its release of GUILE.
#
# The exception is that, if you link the GUILE library with other files
# to produce an executable, this does not by itself cause the
# resulting executable to be covered by the GNU General Public License.
# Your use of that executable is in no way restricted on account of
# linking the GUILE library code into it.
#
# This exception does not however invalidate any other reasons why
# the executable file might be covered by the GNU General Public License.
#
# This exception applies only to the code released by the
# Free Software Foundation under the name GUILE.  If you copy
# code from other Free Software Foundation releases into a copy of
# GUILE, as the General Public License permits, the exception does
# not apply to the code that you add in this way.  To avoid misleading
# anyone as to the status of such modified files, you must delete
# this exception notice from them.
#
# If you write modifications of your own for GUILE, it is your choice
# whether to permit this exception to apply to your modifications.
# If you do not wish that, delete this exception notice.

# "Makefile" for scm Scheme Interpreter
# Author: Aubrey Jaffer

SHELL = /bin/sh
CPROTO = cproto
#CC =
CFLAGS = -g -O
#LIBS =
LD = $(CC) -g -O

# directory where COPYING and InitXXX.scm reside.
#IMPLPATH = /usr/local/src/scm/
#this one is good for bootstrapping
IMPLPATH = `pwd`/
# Pathname where InitXXX.scm resides.
include patchlvl.h
IMPLINIT = $(IMPLPATH)Init$(VERSION).scm

# If pathname where InitXXX.scm resides is not known in advance then
# SCM_INIT_PATH is the environment variable whose value is the
# pathname where InitXXX.scm resides.

intro:
	@echo
	@echo "This is the scm$(VERSION) distribution.  Read \"scm.info\""
	@echo "to learn how to build and install SCM.  Or browse"
	@echo "      http://swissnet.ai.mit.edu/~jaffer/SCM.html"

cfiles = scmmain.c scm.c time.c repl.c ioext.c scl.c sys.c eval.c	\
	subr.c sc2.c unif.c rgx.c crs.c dynl.c record.c posix.c socket.c\
	unix.c rope.c ramap.c gsubr.c edline.c Iedline.scm continue.c	\
	findexec.c script.c
ofiles = scm.o time.o repl.o scl.o sys.o eval.o subr.o unif.o rope.o \
	continue.o findexec.o script.o
# ramap.o
ifiles = Init$(VERSION).scm Transcen.scm Link.scm Macro.scm Macroexpand.scm \
	Tscript.scm
xfiles = x.c x.h xgen.scm xevent.scm xevent.h inc2scm x11.scm

all:	require.scm
	$(MAKE) mydlls
	$(MAKE) myscm
require.scm:
	cp -p requires.scm require.scm

scmlit:	$(ofiles) scmmain.o require.scm
	$(LD) -o scmlit $(ofiles) scmmain.o $(LIBS)
	$(MAKE) checklit
scmflags.h:	scmflags
scmflags:
	echo "#ifndef IMPLINIT" > newflags.h
	echo "#define IMPLINIT \"$(IMPLINIT)\"" >> newflags.h
	echo "#endif" >> newflags.h
	-if (diff newflags.h scmflags.h) then rm newflags.h; \
		 else mv newflags.h scmflags.h; fi

.c.o:
	$(CC) -c $(CFLAGS) $< -o $@
scm.o:	scm.c scm.h scmfig.h scmflags.h patchlvl.h
scmmain.o:	scmmain.c scm.h scmfig.h scmflags.h patchlvl.h
scl.o:	scl.c scm.h scmfig.h scmflags.h
eval.o:	eval.c scm.h scmfig.h scmflags.h setjump.h
unif.o:	unif.c scm.h scmfig.h scmflags.h
#ramap.o:	ramap.c scm.h scmfig.h scmflags.h
repl.o:	repl.c scm.h scmfig.h scmflags.h setjump.h
sys.o:	sys.c scm.h scmfig.h scmflags.h setjump.h
time.o:	time.c scm.h scmfig.h scmflags.h
subr.o:	subr.c scm.h scmfig.h scmflags.h
rope.o:	rope.c scm.h scmfig.h scmflags.h
continue.o:	continue.c continue.h setjump.h scmflags.h

srcdir=$(HOME)/scm/

udscm4:	$(cfiles) $(hfiles) build.scm build
	$(srcdir)build -hsystem -o udscm4 -s $(IMPLPATH) -Fcautious \
	bignums arrays inexact engineering-notation dump dynamic-linking
	rm $(ofiles) scmmain.o

udscm5:	$(cfiles) $(hfiles) build.scm build
	$(srcdir)build -hsystem -o udscm5 -l debug -s $(IMPLPATH) -Fcautious \
	bignums arrays inexact engineering-notation dump dynamic-linking \
	macro #-DNO_SYM_GC
	rm $(ofiles) scmmain.o

myscm4:	udscm4 $(ifiles) require.scm
	-rm slibcat implcat
	-mv scm scm~
	echo "(quit)" | ./udscm4 -no-init-file -o scm

myscm:	udscm5 $(ifiles) require.scm
	-rm slibcat implcat
	-mv scm scm~
	echo "(quit)" | ./udscm5 -no-init-file -r5 -o scm
	$(MAKE) check

mylib:	libscm.a
libscm.a:
	$(srcdir)build -hsystem -Fcautious bignums arrays inexact \
	dynamic-linking -t lib
libtest:	libscm.a libtest.c
	gcc -o libtest libtest.c libscm.a -ldl -lm -lc
	./libtest
pgscm:
	$(srcdir)build -hsystem -s $(IMPLPATH) -Fcautious bignums arrays \
	inexact engineering-notation dump dynamic-linking -o udscm \
	 --compiler-options=-pg --linker-options=-pg -DLACK_SETITIMER
	echo "(quit)" | ./udscm -no-init-file -o pgscm
mydebug:
	$(srcdir)build -hsystem -oudgdbscm -s $(IMPLPATH) -F cautious \
	 bignums arrays inexact engineering-notation dump dynamic-linking \
	 macro \
	 debug --compiler-options=-Wall --linker-options=-Wall #-DTEST_FARLOC
	echo "(quit)" | ./udgdbscm -no-init-file -r5 -o gdbscm

incdir=/usr/include/
x11.scm:	inc2scm Makefile
	rm -f x11.scm
	./inc2scm x11.scm x: $(incdir) X11/X.h X11/cursorfont.h X11/Xlib.h X11/Xutil.h
xevent.h:	xgen.scm
	./xgen.scm $(incdir)X11/Xlib.h
x.h:	x.c xevent.h
	$(CPROTO) x.c > x.h
x.so:	x.c x.h xevent.h
	$(srcdir)build -h system -Fx -t dll --compiler-options=-Wall
mydlls:	x.so
	if [ -f /usr/lib/libreadline.so ]; \
		then $(srcdir)build -h system -Fedit-line -t dll;fi
	$(srcdir)build -h system -Fcurses -t dll
	$(srcdir)build -h system -t dll -c sc2.c rgx.c record.c gsubr.c \
		ioext.c posix.c unix.c socket.c ramap.c
myturtle:
	$(srcdir)build -h system -F turtlegr -t dll

implcat:	*.so mkimpcat.scm
	./scmlit -lmkimpcat.scm

checklit:
	./scmlit -fr4rstest.scm -e'(test-sc4)(test-cont)(test-delay)(gc)'
check:	r4rstest.scm
	./scm -fr4rstest.scm -e'(test-sc4)(test-cont)(test-delay)(gc)'
bench:
	echo `whoami`@`hostname` testing scm \
	 `scm -e'(display *scm-version*)'` >> BenchLog
	echo  on `date` >> BenchLog
	ls -l scm >> BenchLog
	size scm >> BenchLog
	uname -a >> BenchLog
	./scm -lbench.scm
	cat bench.log >> BenchLog
	echo >> BenchLog
	echo
	tail -20 BenchLog
benchlit:
	echo `whoami`@`hostname` testing scmlit \
	 `scmlit -e'(display *scm-version*)'` >> BenchLog
	echo  on `date` >> BenchLog
	ls -l scmlit >> BenchLog
	size scmlit >> BenchLog
	uname -a >> BenchLog
	./scmlit -lbench.scm
	cat bench.log >> BenchLog
	echo >> BenchLog
	echo
	tail -20 BenchLog
report:
	./scmlit -e"(slib:report #t)"
	scm -e"(slib:report #t)"

dvidir=../dvi/
dvi:	$(dvidir)scm.dvi $(dvidir)Xlibscm.dvi
$(dvidir)scm.dvi:	version.txi scm.texi platform.txi features.txi\
	$(dvidir)scm.fn Makefile
#	cd $(dvidir);export TEXINPUTS=$(srcdir):;texi2dvi $(srcdir)scm.texi
	-(cd $(dvidir);export TEXINPUTS=$(srcdir):;texindex scm.??)
	cd $(dvidir);export TEXINPUTS=$(srcdir):;tex $(srcdir)scm.texi
$(dvidir)scm.fn:
	cd $(dvidir);export TEXINPUTS=$(srcdir):;tex $(srcdir)scm.texi
$(dvidir)Xlibscm.dvi:	version.txi Xlibscm.texi \
	$(dvidir)Xlibscm.fn Makefile
#	cd $(dvidir);export TEXINPUTS=$(srcdir):;texi2dvi $(srcdir)Xlibscm.texi
	-(cd $(dvidir);export TEXINPUTS=$(srcdir):;texindex Xlibscm.??)
	cd $(dvidir);export TEXINPUTS=$(srcdir):;tex $(srcdir)Xlibscm.texi
$(dvidir)Xlibscm.fn:
	cd $(dvidir);export TEXINPUTS=$(srcdir):;tex $(srcdir)Xlibscm.texi
xdvi:	$(dvidir)scm.dvi
	xdvi -s 6 $(dvidir)scm.dvi
Xdvi:	$(dvidir)Xlibscm.dvi
	xdvi -s 6 $(dvidir)Xlibscm.dvi

htmldir=../public_html/
html:	$(htmldir)scm_toc.html $(htmldir)Xlibscm_toc.html

scm_toc.html:	version.txi scm.texi platform.txi features.txi
	texi2html -split -verbose scm.texi
Xlibscm_toc.html:	$(htmldir)Xlibscm_toc.html
$(htmldir)Xlibscm_toc.html:	version.txi Xlibscm.texi
	cd $(htmldir);texi2html -split -verbose $(srcdir)Xlibscm.texi

scmprev/scm_toc.html:
#	cd scmprev;make scm_toc.html
	cd scmprev;texi2html -split -verbose scm.texi

$(htmldir)scm_toc.html:	scmprev/scm_toc.html scm_toc.html Makefile
	hitch scmprev/scm_\*.html scm_\*.html $(htmldir)

################ INSTALL DEFINITIONS ################

prefix = /usr/local/
exec_prefix = $(prefix)
# directory where `make install' will put executable.
bindir = $(exec_prefix)bin/
libdir = $(exec_prefix)lib/
libscmdir = $(libdir)scm/
# directory where `make install' will put manual page.
mandir = $(prefix)man/
man1dir = $(mandir)man1/
infodir = $(prefix)info/
includedir = $(prefix)include/

README:	build build.scm scm.info
	scm -l build -e"(make-readme)"

info:	installinfo
installinfo:	$(infodir)scm.info $(infodir)Xlibscm.info

platform.txi:	build.scm
	./scmlit -r database-browse -l build.scm -e "(browse build 'platform)" \
	> platform.txi
features.txi:	build.features build.scm
	./scmlit -l build.features -e"(make-features-txi)"
scm$(VERSION).info:	version.txi scm.texi platform.txi features.txi
	-mv scm.info scmtemp.info
	makeinfo scm.texi --no-split -o scm.info
	mv scm.info scm$(VERSION).info
	-mv scmtemp.info scm.info
scm.info:	scm$(VERSION).info
#	infobar scmprev/scm.info scm$(VERSION).info scm.info
$(infodir)scm.info:	scm.info
	cp -p scm.info $(infodir)scm.info
	-install-info $(infodir)scm.info $(infodir)dir
	-rm $(infodir)scm.info.gz

Xlibscm.info:	version.txi Xlibscm.texi
	makeinfo Xlibscm.texi --no-split -o Xlibscm.info
$(infodir)Xlibscm.info:	
	cp Xlibscm.info $(infodir)Xlibscm.info
	-install-info $(infodir)Xlibscm.info $(infodir)/dir
	-rm $(infodir)Xlibscm.info*.gz

infoz:	installinfoz
installinfoz:	$(infodir)scm.info.gz $(infodir)Xlibscm.info.gz
$(infodir)scm.info.gz:	$(infodir)scm.info
	gzip -f $(infodir)scm.info
$(infodir)Xlibscm.info.gz:	$(infodir)Xlibscm.info
	gzip -f $(infodir)Xlibscm.info

install:	scm.1
	test -d $(bindir) || mkdir $(bindir)
	test -d $(mandir) || mkdir $(mandir)
	test -d $(man1dir) || mkdir $(man1dir)
	-cp scm $(bindir)
#	-strip $(bindir)scm
	-cp scm.1 $(man1dir)
	test -d $(libdir) || mkdir $(libdir)
	test -d $(libscmdir) || mkdir $(libscmdir)
	-cp Init$(VERSION).scm Link.scm Transcen.scm Macro.scm Tscript.scm \
		COPYING $(libscmdir)
	test -f $(libscmdir)require.scm || \
		cp requires.scm $(libscmdir)require.scm
	-cp mkimpcat.scm Iedline.scm *.sl *.so $(libscmdir)

installlib:
	test -d $(includedir) || mkdir $(includedir)
	cp scm.h $(includedir)scm.h
	cp scmfig.h $(includedir)scmfig.h
	test -d $(libdir) || mkdir $(libdir)
	cp libscm.a $(libdir)libscm.a

uninstall:
	-rm $(bindir)scm
	-rm $(man1dir)scm.1
	-rm $(includedir)scm.h
	-rm $(includedir)scmfig.h
	-rm $(libdir)libscm.a
#	-rm $(libscmdir)Init$(VERSION).scm
#	-rm $(libscmdir)Link.scm
#	-rm $(libscmdir)Transcen.scm
#	-rm $(libscmdir)COPYING

scm.doc:	scm.1
	nroff -man $< | ul -tunknown >$@

#### Stuff for maintaining SCM below ####

ver = $(VERSION)
version.txi:	patchlvl.h
	echo @set SCMVERSION $(VERSION) > version.txi
	echo @set SCMDATE `date +"%B %Y"` >> version.txi

RM_R = rm -rf
ufiles = pre-crt0.c ecrt0.c gmalloc.c unexec.c unexelf.c unexhp9k800.c \
	unexsunos4.c unexalpha.c unexsgi.c

#	cxux-crt0.s ecrt0.c gmalloc.c pre-crt0.c unexaix.c unexalpha.c \
#	unexapollo.c unexconvex.c unexec.c unexelf.c unexelf1.c \
#	unexencap.c unexenix.c unexfx2800.c unexhp9k800.c unexmips.c \
#	unexnext.c unexnt.c unexsgi.c unexsni.c unexsunos4.c

confiles = scmconfig.h.in mkinstalldirs acconfig-1.5.h install-sh \
	configure configure.in Makefile.in COPYING README.unix

hfiles = scm.h scmfig.h setjump.h patchlvl.h continue.h
tfiles = r4rstest.scm example.scm pi.scm pi.c split.scm bench.scm
dfiles = ANNOUNCE README COPYING scm.1 scm.doc QUICKREF \
	scm.info scm.texi Xlibscm.info Xlibscm.texi ChangeLog
mfiles = Makefile build.scm build build.bat requires.scm \
	.gdbinit mkimpcat.scm disarm.scm
vfiles = setjump.mar setjump.s
afiles = $(dfiles) $(cfiles) $(hfiles) $(ifiles) $(tfiles) $(mfiles) \
	$(vfiles) $(ufiles) $(xfiles)

makedev = make -f $(HOME)/makefile.dev
CHPAT=$(HOME)/bin/chpat
RSYNC=rsync -v --rsync-path bin/rsync
dest = $(HOME)/dist/
temp/scm:	$(afiles)
	-$(RM_R) temp
	mkdir temp
	mkdir temp/scm
	ln $(afiles) temp/scm

release:	dist
	cp $(srcdir)ANNOUNCE $(htmldir)SCM_ANNOUNCE
	$(RSYNC) $(htmldir)SCM.html $(htmldir)SCM_ANNOUNCE nestle.ai.mit.edu:public_html/
	$(RSYNC) $(dest)README $(dest)scm$(VERSION).zip nestle.ai.mit.edu:dist/
#	upload $(dest)README $(dest)scm$(VERSION).zip ftp.gnu.org:gnu/jacal/
#	$(MAKE) indiana
indiana:
	upload $(dest)scm$(VERSION).zip ftp@ftp.cs.indiana.edu:/pub/scheme-repository/incoming
	echo -e \
	'I have uploaded scm$(VERSION).zip to ftp.cs.indiana.edu:/pub/scheme-repository/incoming\n' \
	'for placement into ftp.cs.indiana.edu:/pub/scheme-repository/imp/' \
	 | mail -s 'SCM upload' -b jaffer scheme-repository-request@cs.indiana.edu

postnews:
	echo -e "Newsgroups: comp.lang.scheme\n" | cat - ANNOUNCE | \
	inews -h -O -S \
	-f "announce@docupress.com (Aubrey Jaffer & Radey Shouman)" \
	 -t "SCM$(VERSION) Released" -d world

upzip:	$(HOME)/pub/scm.zip
	$(RSYNC) $(HOME)/pub/scm.zip nestle.ai.mit.edu:pub/

dist:	$(dest)scm$(VERSION).zip
$(dest)scm$(VERSION).zip:	temp/scm
	$(makedev) DEST=$(dest) PROD=scm ver=$(VERSION) zip
	cvs tag -F scm$(VERSION)
shar:	scm.shar
scm.shar:	temp/scm
	$(makedev) PROD=scm shar
dclshar:	scm.com
com:	scm.com
scm.com:	temp/scm
	$(makedev) PROD=scm com
zip:	scm.zip
scm.zip:	temp/scm
	$(makedev) PROD=scm zip
doszip:	/c/scm/dist/scm$(VERSION).zip
/c/scm/dist/scm$(VERSION).zip:	temp/scm turtle turtlegr.c grtest.scm
	$(makedev) DEST=/c/scm/dist/ PROD=scm ver=$(VERSION) zip
	cd ..; zip -9ur /c/scm/dist/scm$(VERSION).zip \
		scm/turtle scm/turtlegr.c scm/grtest.scm
	zip -d /c/scm/dist/scm$(VERSION).zip scm/scm.info scm/Xlibscm.info
pubzip:	$(HOME)/pub/scm.zip
$(HOME)/pub/scm.zip:	temp/scm
	$(makedev) DEST=$(HOME)/pub/ PROD=scm zip

diffs:	pubdiffs
pubdiffs:	temp/scm
	$(makedev) DEST=$(HOME)/pub/ PROD=scm pubdiffs
distdiffs:	temp/scm
	$(makedev) DEST=$(dest) PROD=scm ver=$(ver) distdiffs


HOBBITVERSION = 5x
hobfiles = README.hob hobbit.doc hobbit.tms hobbit.scm scmhob.h
#hobfiles = hobbit.doc COPYING Makefile.hob hobbit.scm scmhob.h scmhob.scm

hobtemp/scm:	$(hobfiles)
	-$(RM_R) hobtemp
	mkdir hobtemp
	mkdir hobtemp/scm
	ln $(hobfiles) hobtemp/scm

hobdist:	$(dest)hobbit$(HOBBITVERSION).zip
$(dest)hobbit$(HOBBITVERSION).zip:	hobtemp/scm
	$(makedev) DEST=$(dest) PROD=scm ver=-hob$(HOBBITVERSION) \
		zip TEMP=hobtemp/
	mv $(dest)scm-hob$(HOBBITVERSION).zip \
		$(dest)hobbit$(HOBBITVERSION).zip
hobbit$(HOBBITVERSION).zip:	hobtemp/scm
	$(makedev) TEMP=hobtemp/ name=hobbit$(HOBBITVERSION) PROD=scm zip

new:
	echo `date` \ Aubrey Jaffer \ \<`whoami`@`hostname`\>> change
	echo>> change
	echo \	\* patchlvl.h \(SCMVERSION\): Bumped from $(VERSION) to $(ver).>>change
	echo>> change
	cat ChangeLog >> change
	mv -f change ChangeLog
	$(CHPAT) scm$(VERSION) scm$(ver) ANNOUNCE ../jacal/ANNOUNCE \
		../wb/README ../wb/ANNOUNCE \
		$(htmldir)README.html ../dist/README \
		$(htmldir)SLIB.html $(htmldir)JACAL.html \
		$(htmldir)SCM.html $(htmldir)Hobbit.html \
		$(htmldir)SIMSYNCH.html \
		/c/scm/dist/install.bat /c/scm/dist/makefile \
		/c/scm/dist/mkdisk.bat hobbit.doc
	cp -f hobbit.doc $(htmldir)hobbit.txt
	mv -f Init$(VERSION).scm Init$(ver).scm
	$(CHPAT) $(VERSION) $(ver) patchlvl.h \
		Init$(ver).scm $(htmldir)SCM.html
	cvs remove Init$(VERSION).scm
	cvs add Init$(ver).scm
	cvs commit -m 'Init$(VERSION).scm changed to Init$(ver).scm' \
		Init$(VERSION).scm Init$(ver).scm
	cvs commit -m '(SCMVERSION): Bumped from $(VERSION) to $(ver).'
	cvs tag -F scm$(ver)

configtemp/scm:	$(confiles)
	-$(RM_R) configtemp/scm
	-mkdir configtemp
	mkdir configtemp/scm
	ln $(confiles) configtemp/scm
confdist:	scmconfig.tar.gz
scmconfig.tar.gz:	configtemp/scm
	cd configtemp; tar cohf ../scmconfig.tar scm
	chmod 664 scmconfig.tar
	-rm -f scmconfig.tar.*z
	gzip scmconfig.tar
	chmod 664 scmconfig.tar.*z

lint:	lints
lints:	$(cfiles) $(hfiles)
	lint $(CPPFLAGS) $(ALL_CFLAGS) $(cfiles) | tee lints
#	lint $(CPPFLAGS) $(ALL_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'

name8:	name8s
name8s:	scmlit
	nm scmlit |\
	$(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}' -
ctags:	$(hfiles) $(cfiles) $(xfiles)
	etags $(hfiles) $(cfiles) $(xfiles)
TAGS:
tags:	$(hfiles) $(cfiles) $(ifiles) $(vfiles) turtlegr.c\
	version.txi scm.texi Xlibscm.texi build.scm build $(xfiles)
#	# $(ufiles) $(mfiles) ChangeLog hobbit.scm
	etags $(hfiles) $(cfiles) $(ifiles) $(vfiles) turtlegr.c\
	Xlibscm.texi scm.texi build.scm build $(xfiles)
# 	# $(ufiles) $(mfiles) ChangeLog hobbit.scm
mostlyclean:
clean:
	-rm -f core a.out ramap.o ramap.obj $(ofiles) scmmain.o lints
	-$(RM_R) *temp
	-rm -f scm$(VERSION).info

distclean:	clean
	-rm -f $(EXECFILES) *.o *.obj a.out  implcat slibcat gdbscm TAGS
realclean:	distclean
	-rm -f scm.doc
realempty:	temp/scm
	-rm -f $(afiles)
myclean:	clean
	-rm -f *~ *.bak *.orig *.rej tmp* \#* *\#