Do away with memory models cruft. Sorry, PDP users.
[p5sagit/p5-mst-13.2.git] / x2p / Makefile.SH
CommitLineData
b233458b 1case $CONFIGDOTSH in
8d063cd8 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
5869b1f1 37# XXX Perl malloc temporarily unusable (declaration collisions with stdlib.h)
30e2e425 38#mallocsrc = $mallocsrc
39#mallocobj = $mallocobj
bf10efe7 40shellflags = $shellflags
8d063cd8 41
b6ccd89c 42libs = $libs
cc72480d 43
1aef788c 44$make_set_make
45# grrr
46SHELL = $sh
47
dfe9444c 48# These variables may need to be manually set for non-Unix systems.
cc72480d 49AR = $ar
dfe9444c 50EXE_EXT = $_ext
51LIB_EXT = $_a
52OBJ_EXT = $_o
53PATH_SEP = $p_
cc72480d 54
55FIRSTMAKEFILE = $firstmakefile
56
28e8609d 57# how to tr(anslate) newlines
58
59TRNL = '$trnl'
60
cc72480d 61.SUFFIXES: .c \$(OBJ_EXT)
62
8d063cd8 63!GROK!THIS!
64
65cat >>Makefile <<'!NO!SUBS!'
66
52cebf5e 67REALPERL = ../perl
bf10efe7 68CCCMD = `sh $(shellflags) cflags $@`
d48672a2 69
fe14fcc3 70public = a2p s2p find2perl
8d063cd8 71
72private =
73
74manpages = a2p.man s2p.man
75
76util =
77
4633a7c4 78sh = Makefile.SH cflags.SH
79shextract = Makefile cflags
8d063cd8 80
4633a7c4 81pl = find2perl.PL s2p.PL
82plextract = find2perl s2p
52cebf5e 83plexe = find2perl.exe s2p.exe
84plc = find2perl.c s2p.c
1cfa4ec7 85plm = a2p.loadmap
4633a7c4 86
87addedbyconf = $(shextract) $(plextract)
16d20bd9 88
3b5ca523 89h = EXTERN.h INTERN.h ../config.h ../handy.h hash.h a2p.h str.h util.h
8d063cd8 90
3b5ca523 91c = hash.c $(mallocsrc) str.c util.c walk.c
8d063cd8 92
cc72480d 93obj = hash$(OBJ_EXT) $(mallocobj) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT)
8d063cd8 94
95lintflags = -phbvxac
96
1aef788c 97
cc72480d 98.c$(OBJ_EXT):
1aef788c 99 $(CCCMD) -DPERL_FOR_X2P $*.c
8d063cd8 100
101all: $(public) $(private) $(util)
30b346b1 102 @echo " "
8d063cd8 103
52cebf5e 104compile: all
105 $(REALPERL) -I../lib ../utils/perlcc -regex 's/$$/.exe/' $(plextract) -prog -verbose dcf -log ../compilelog;
106
cc72480d 107a2p: $(obj) a2p$(OBJ_EXT)
87563a30 108 $(CC) -o a2p $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs)
8d063cd8 109
9c8d0b29 110# I now supply a2p.c with the kits, so the following section is
56febc5e 111# used only if you force byacc to run by saying
112# make run_byacc
113
232e078e 114run_byacc: FORCE
56febc5e 115 @ echo Expect many shift/reduce and reduce/reduce conflicts
116 $(BYACC) a2p.y
28e8609d 117 rm -f a2p.c
56febc5e 118 mv y.tab.c a2p.c
119
2efaeb47 120FORCE:
121
56febc5e 122# We don't want to regenerate a2p.c, but it might appear out-of-date
123# after a patch is applied or a new distribution is made.
124a2p.c: a2p.y
30b346b1 125 -@sh -c true
8d063cd8 126
55497cff 127a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \
128 ../handy.h ../config.h str.h hash.h
5869b1f1 129 $(CCCMD) a2p.c
8d063cd8 130
8d063cd8 131clean:
1cfa4ec7 132 rm -f a2p *$(OBJ_EXT) $(plexe) $(plc) $(plm)
8d063cd8 133
b6ccd89c 134realclean: clean
56acea6f 135 rm -f core $(addedbyconf) all malloc.c
cc72480d 136 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
8d063cd8 137
2edbd6da 138veryclean: realclean
139 rm -f *~ *.orig
140
8d063cd8 141# The following lint has practically everything turned on. Unfortunately,
142# you have to wade through a lot of mumbo jumbo that can't be suppressed.
143# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
144# for that spot.
145
146lint:
147 lint $(lintflags) $(defs) $(c) > a2p.fuzz
148
f1ca563b 149depend: $(mallocsrc) ../makedepend
3b5ca523 150 sh ../makedepend MAKE=$(MAKE)
8d063cd8 151
152clist:
28e8609d 153 echo $(c) | tr ' ' $(TRNL) >.clist
8d063cd8 154
155hlist:
28e8609d 156 echo $(h) | tr ' ' $(TRNL) >.hlist
8d063cd8 157
158shlist:
28e8609d 159 echo $(sh) | tr ' ' $(TRNL) >.shlist
8d063cd8 160
4633a7c4 161# These should be automatically generated
162
163$(plextract):
164 ../miniperl -I../lib $@.PL
165
f1ca563b 166malloc.c: ../malloc.c
748a9306 167 rm -f malloc.c
79072805 168 sed <../malloc.c >malloc.c \
14bd2ed1 169 -e 's/"EXTERN.h"/"..\/EXTERN.h"/' \
79072805 170 -e 's/"perl.h"/"..\/perl.h"/' \
5538b580 171 -e 's/my_exit/exit/' \
8611d51e 172 -e 's/MUTEX_[A-Z_]*(&PL_malloc_mutex);//'
f1ca563b 173
8d063cd8 174# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
175$(obj):
176 @ echo "You haven't done a "'"make depend" yet!'; exit 1
a0d0e21e 177makedepend: depend
8d063cd8 178!NO!SUBS!
179$eunicefix Makefile
180case `pwd` in
181*SH)
182 $rm -f ../Makefile
cc72480d 183 $ln Makefile ../Makefile
8d063cd8 184 ;;
185esac
cc72480d 186rm -f $firstmakefile