blob: f7563991602006aa384a93b1349972bc00d509fa (
plain) (
blame)
| 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
 | GCLIBTGZ=gc5.0alpha3.tar.gz
all: XXMakefile
	make -f XXMakefile 
install: XXMakefile
	make -f XXMakefile install
uninstall: XXMakefile
	make -f XXMakefile uninstall
proto: XXMakefile
	make -f XXMakefile proto
clean: XXMakefile
	make -f XXMakefile clean
sweep: XXMakefile
	make -f XXMakefile sweep
veryclean: clean sweep
	rm XXMakefile
	(cd gc; make clean)
	rm -f config.param
	rm -f */*~ */*.orig */*.rej
prepare:
	rm -rf gc
	gzip -dc ../$(GCLIBTGZ) | tar xvf -
	cp XMakefile.dist XMakefile
dist: XXMakefile
	make -f XXMakefile dist
bindist: XXMakefile
	make -f XXMakefile bindist
indent:
	indent -orig -nce -ncdb -i4 -di1 -nbc *.c *.h
XXMakefile: XMakefile config.h
	awk '/^#ifdef makefile_parameter/,/^#else/' config.h | cat - XMakefile > XXMakefile
 |