Use PERL=../miniperl
[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
4633a7c4 51sh = Makefile.SH cflags.SH
52shextract = Makefile cflags
8d063cd8 53
4633a7c4 54pl = find2perl.PL s2p.PL
55plextract = find2perl s2p
56
57addedbyconf = $(shextract) $(plextract)
16d20bd9 58
bf10efe7 59h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
8d063cd8 60
a1cc2bdc 61c = hash.c $(mallocsrc) str.c util.c walk.c
8d063cd8 62
a1cc2bdc 63obj = hash.o $(mallocobj) str.o util.o walk.o
8d063cd8 64
65lintflags = -phbvxac
66
8d063cd8 67# grrr
68SHELL = /bin/sh
69
70.c.o:
d48672a2 71 $(CCCMD) $*.c
8d063cd8 72
73all: $(public) $(private) $(util)
74 touch all
75
76a2p: $(obj) a2p.o
d48672a2 77 $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
8d063cd8 78
9c8d0b29 79# I now supply a2p.c with the kits, so the following section is
56febc5e 80# used only if you force byacc to run by saying
81# make run_byacc
82
232e078e 83run_byacc: FORCE
56febc5e 84 @ echo Expect many shift/reduce and reduce/reduce conflicts
85 $(BYACC) a2p.y
86 mv y.tab.c a2p.c
87
88# We don't want to regenerate a2p.c, but it might appear out-of-date
89# after a patch is applied or a new distribution is made.
90a2p.c: a2p.y
232e078e 91 -@touch a2p.c
8d063cd8 92
b6ccd89c 93a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
d48672a2 94 $(CCCMD) $(LARGE) a2p.c
8d063cd8 95
8d063cd8 96clean:
748a9306 97 rm -f a2p *.o
8d063cd8 98
b6ccd89c 99realclean: clean
9c8d0b29 100 rm -f *.orig core $(addedbyconf) all malloc.c
16d20bd9 101 rm -f makefile makefile.old
8d063cd8 102
103# The following lint has practically everything turned on. Unfortunately,
104# you have to wade through a lot of mumbo jumbo that can't be suppressed.
105# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
106# for that spot.
107
108lint:
109 lint $(lintflags) $(defs) $(c) > a2p.fuzz
110
f1ca563b 111depend: $(mallocsrc) ../makedepend
8d063cd8 112 ../makedepend
113
114clist:
115 echo $(c) | tr ' ' '\012' >.clist
116
117hlist:
118 echo $(h) | tr ' ' '\012' >.hlist
119
120shlist:
121 echo $(sh) | tr ' ' '\012' >.shlist
122
4633a7c4 123# These should be automatically generated
124
125$(plextract):
126 ../miniperl -I../lib $@.PL
127
f1ca563b 128malloc.c: ../malloc.c
748a9306 129 rm -f malloc.c
79072805 130 sed <../malloc.c >malloc.c \
131 -e 's/"perl.h"/"..\/perl.h"/' \
132 -e 's/my_exit/exit/'
f1ca563b 133
8d063cd8 134# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
135$(obj):
136 @ echo "You haven't done a "'"make depend" yet!'; exit 1
a0d0e21e 137makedepend: depend
8d063cd8 138!NO!SUBS!
139$eunicefix Makefile
140case `pwd` in
141*SH)
142 $rm -f ../Makefile
143 ln Makefile ../Makefile
144 ;;
145esac
f1ca563b 146rm -f makefile