[perl5.004_71] Patch: change MakeMaker default compress --> gzip
[p5sagit/p5-mst-13.2.git] / x2p / Makefile.SH
CommitLineData
8d063cd8 1case $CONFIG in
2'')
a0d0e21e 3 if test -f config.sh; then TOP=.;
4 elif test -f ../config.sh; then TOP=..;
5 elif test -f ../../config.sh; then TOP=../..;
6 elif test -f ../../../config.sh; then TOP=../../..;
7 elif test -f ../../../../config.sh; then TOP=../../../..;
8 else
9 echo "Can't find config.sh."; exit 1
10 fi
11 . $TOP/config.sh
12 ;;
8d063cd8 13esac
a0d0e21e 14: This forces SH files to create target in same directory as SH file.
15: This is so that make depend always knows where to find SH derivatives.
16case "$0" in
ff3fa5b4 17*/Makefile.SH) cd `expr X$0 : 'X\(.*\)/'` ;;
18Makefile.SH) ;;
19*) case `pwd` in
20 */x2p) ;;
21 *) if test -d x2p; then cd x2p
22 else echo "Can't figure out where to write output."; exit 1
23 fi;;
24 esac;;
a0d0e21e 25esac
26
8d063cd8 27echo "Extracting x2p/Makefile (with variable substitutions)"
bf10efe7 28rm -f Makefile
8d063cd8 29cat >Makefile <<!GROK!THIS!
1aef788c 30# $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
8d063cd8 31#
32# $Log: Makefile.SH,v $
8d063cd8 33
34CC = $cc
9c8d0b29 35BYACC = $byacc
8d063cd8 36LDFLAGS = $ldflags
37SMALL = $small
38LARGE = $large $split
a1cc2bdc 39mallocsrc = $mallocsrc
40mallocobj = $mallocobj
bf10efe7 41shellflags = $shellflags
8d063cd8 42
b6ccd89c 43libs = $libs
cc72480d 44
1aef788c 45$make_set_make
46# grrr
47SHELL = $sh
48
dfe9444c 49# These variables may need to be manually set for non-Unix systems.
cc72480d 50AR = $ar
dfe9444c 51EXE_EXT = $_ext
52LIB_EXT = $_a
53OBJ_EXT = $_o
54PATH_SEP = $p_
cc72480d 55
56FIRSTMAKEFILE = $firstmakefile
57
58.SUFFIXES: .c \$(OBJ_EXT)
59
8d063cd8 60!GROK!THIS!
61
62cat >>Makefile <<'!NO!SUBS!'
63
52cebf5e 64REALPERL = ../perl
bf10efe7 65CCCMD = `sh $(shellflags) cflags $@`
d48672a2 66
fe14fcc3 67public = a2p s2p find2perl
8d063cd8 68
69private =
70
71manpages = a2p.man s2p.man
72
73util =
74
4633a7c4 75sh = Makefile.SH cflags.SH
76shextract = Makefile cflags
8d063cd8 77
4633a7c4 78pl = find2perl.PL s2p.PL
79plextract = find2perl s2p
52cebf5e 80plexe = find2perl.exe s2p.exe
81plc = find2perl.c s2p.c
4633a7c4 82
83addedbyconf = $(shextract) $(plextract)
16d20bd9 84
55497cff 85h = EXTERN.h INTERN.h ../config.h ../handy.h hash.h a2p.h str.h util.h
8d063cd8 86
a1cc2bdc 87c = hash.c $(mallocsrc) str.c util.c walk.c
8d063cd8 88
cc72480d 89obj = hash$(OBJ_EXT) $(mallocobj) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT)
8d063cd8 90
91lintflags = -phbvxac
92
1aef788c 93
cc72480d 94.c$(OBJ_EXT):
1aef788c 95 $(CCCMD) -DPERL_FOR_X2P $*.c
8d063cd8 96
97all: $(public) $(private) $(util)
30b346b1 98 @echo " "
8d063cd8 99
52cebf5e 100compile: all
101 $(REALPERL) -I../lib ../utils/perlcc -regex 's/$$/.exe/' $(plextract) -prog -verbose dcf -log ../compilelog;
102
cc72480d 103a2p: $(obj) a2p$(OBJ_EXT)
1aef788c 104 $(CC) $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs) -o a2p
8d063cd8 105
9c8d0b29 106# I now supply a2p.c with the kits, so the following section is
56febc5e 107# used only if you force byacc to run by saying
108# make run_byacc
109
232e078e 110run_byacc: FORCE
56febc5e 111 @ echo Expect many shift/reduce and reduce/reduce conflicts
112 $(BYACC) a2p.y
113 mv y.tab.c a2p.c
114
115# We don't want to regenerate a2p.c, but it might appear out-of-date
116# after a patch is applied or a new distribution is made.
117a2p.c: a2p.y
30b346b1 118 -@sh -c true
8d063cd8 119
55497cff 120a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \
121 ../handy.h ../config.h str.h hash.h
1aef788c 122 $(CCCMD) $(LARGE) a2p.c
8d063cd8 123
8d063cd8 124clean:
52cebf5e 125 rm -f a2p *$(OBJ_EXT) $(plexe) $(plc)
8d063cd8 126
b6ccd89c 127realclean: clean
9c8d0b29 128 rm -f *.orig core $(addedbyconf) all malloc.c
cc72480d 129 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
8d063cd8 130
131# The following lint has practically everything turned on. Unfortunately,
132# you have to wade through a lot of mumbo jumbo that can't be suppressed.
133# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
134# for that spot.
135
136lint:
137 lint $(lintflags) $(defs) $(c) > a2p.fuzz
138
f1ca563b 139depend: $(mallocsrc) ../makedepend
fb73857a 140 sh ../makedepend MAKE=$(MAKE)
8d063cd8 141
142clist:
143 echo $(c) | tr ' ' '\012' >.clist
144
145hlist:
146 echo $(h) | tr ' ' '\012' >.hlist
147
148shlist:
149 echo $(sh) | tr ' ' '\012' >.shlist
150
4633a7c4 151# These should be automatically generated
152
153$(plextract):
154 ../miniperl -I../lib $@.PL
155
f1ca563b 156malloc.c: ../malloc.c
748a9306 157 rm -f malloc.c
79072805 158 sed <../malloc.c >malloc.c \
14bd2ed1 159 -e 's/"EXTERN.h"/"..\/EXTERN.h"/' \
79072805 160 -e 's/"perl.h"/"..\/perl.h"/' \
5538b580 161 -e 's/my_exit/exit/' \
162 -e 's/MUTEX_[A-Z_]*(&malloc_mutex);//'
f1ca563b 163
8d063cd8 164# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
165$(obj):
166 @ echo "You haven't done a "'"make depend" yet!'; exit 1
a0d0e21e 167makedepend: depend
8d063cd8 168!NO!SUBS!
169$eunicefix Makefile
170case `pwd` in
171*SH)
172 $rm -f ../Makefile
cc72480d 173 $ln Makefile ../Makefile
8d063cd8 174 ;;
175esac
cc72480d 176rm -f $firstmakefile