This is my patch patch.1n for perl5.001.
[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
17*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
18esac
19
8d063cd8 20echo "Extracting x2p/Makefile (with variable substitutions)"
bf10efe7 21rm -f Makefile
8d063cd8 22cat >Makefile <<!GROK!THIS!
79072805 23# $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
8d063cd8 24#
25# $Log: Makefile.SH,v $
8d063cd8 26
27CC = $cc
9c8d0b29 28BYACC = $byacc
8d063cd8 29LDFLAGS = $ldflags
30SMALL = $small
31LARGE = $large $split
a1cc2bdc 32mallocsrc = $mallocsrc
33mallocobj = $mallocobj
bf10efe7 34shellflags = $shellflags
8d063cd8 35
b6ccd89c 36libs = $libs
8d063cd8 37!GROK!THIS!
38
39cat >>Makefile <<'!NO!SUBS!'
40
bf10efe7 41CCCMD = `sh $(shellflags) cflags $@`
d48672a2 42
fe14fcc3 43public = a2p s2p find2perl
8d063cd8 44
45private =
46
47manpages = a2p.man s2p.man
48
49util =
50
a0d0e21e 51sh = Makefile.SH cflags.SH find2perl.SH s2p.SH
8d063cd8 52
16d20bd9 53addedbyconf = Makefile cflags find2perl s2p
54
bf10efe7 55h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
8d063cd8 56
a1cc2bdc 57c = hash.c $(mallocsrc) str.c util.c walk.c
8d063cd8 58
a1cc2bdc 59obj = hash.o $(mallocobj) str.o util.o walk.o
8d063cd8 60
61lintflags = -phbvxac
62
8d063cd8 63# grrr
64SHELL = /bin/sh
65
66.c.o:
d48672a2 67 $(CCCMD) $*.c
8d063cd8 68
69all: $(public) $(private) $(util)
70 touch all
71
72a2p: $(obj) a2p.o
d48672a2 73 $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
8d063cd8 74
9c8d0b29 75# I now supply a2p.c with the kits, so the following section is
56febc5e 76# used only if you force byacc to run by saying
77# make run_byacc
78
232e078e 79run_byacc: FORCE
56febc5e 80 @ echo Expect many shift/reduce and reduce/reduce conflicts
81 $(BYACC) a2p.y
82 mv y.tab.c a2p.c
83
84# We don't want to regenerate a2p.c, but it might appear out-of-date
85# after a patch is applied or a new distribution is made.
86a2p.c: a2p.y
232e078e 87 -@touch a2p.c
8d063cd8 88
b6ccd89c 89a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
d48672a2 90 $(CCCMD) $(LARGE) a2p.c
8d063cd8 91
8d063cd8 92clean:
748a9306 93 rm -f a2p *.o
8d063cd8 94
b6ccd89c 95realclean: clean
9c8d0b29 96 rm -f *.orig core $(addedbyconf) all malloc.c
16d20bd9 97 rm -f makefile makefile.old
8d063cd8 98
99# The following lint has practically everything turned on. Unfortunately,
100# you have to wade through a lot of mumbo jumbo that can't be suppressed.
101# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
102# for that spot.
103
104lint:
105 lint $(lintflags) $(defs) $(c) > a2p.fuzz
106
f1ca563b 107depend: $(mallocsrc) ../makedepend
8d063cd8 108 ../makedepend
109
110clist:
111 echo $(c) | tr ' ' '\012' >.clist
112
113hlist:
114 echo $(h) | tr ' ' '\012' >.hlist
115
116shlist:
117 echo $(sh) | tr ' ' '\012' >.shlist
118
f1ca563b 119malloc.c: ../malloc.c
748a9306 120 rm -f malloc.c
79072805 121 sed <../malloc.c >malloc.c \
122 -e 's/"perl.h"/"..\/perl.h"/' \
123 -e 's/my_exit/exit/'
f1ca563b 124
8d063cd8 125# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
126$(obj):
127 @ echo "You haven't done a "'"make depend" yet!'; exit 1
a0d0e21e 128makedepend: depend
8d063cd8 129!NO!SUBS!
130$eunicefix Makefile
131case `pwd` in
132*SH)
133 $rm -f ../Makefile
134 ln Makefile ../Makefile
135 ;;
136esac
f1ca563b 137rm -f makefile