perl5.001 patch.1c
[p5sagit/p5-mst-13.2.git] / x2p / Makefile.SH
1 case $CONFIG in
2 '')
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         ;;
13 esac
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.
16 case "$0" in
17 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
18 esac
19
20 echo "Extracting x2p/Makefile (with variable substitutions)"
21 rm -f Makefile
22 cat >Makefile <<!GROK!THIS!
23 # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
24 #
25 # $Log: Makefile.SH,v $
26
27 CC = $cc
28 BYACC = $byacc
29 mansrc = $mansrc
30 manext = $manext
31 LDFLAGS = $ldflags
32 SMALL = $small
33 LARGE = $large $split
34 mallocsrc = $mallocsrc
35 mallocobj = $mallocobj
36 shellflags = $shellflags
37
38 libs = $libs
39 !GROK!THIS!
40
41 cat >>Makefile <<'!NO!SUBS!'
42
43 CCCMD = `sh $(shellflags) cflags $@`
44
45 public = a2p s2p find2perl
46
47 private = 
48
49 manpages = a2p.man s2p.man
50
51 util =
52
53 sh = Makefile.SH cflags.SH find2perl.SH s2p.SH
54
55 h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
56
57 c = hash.c $(mallocsrc) str.c util.c walk.c
58
59 obj = hash.o $(mallocobj) str.o util.o walk.o
60
61 lintflags = -phbvxac
62
63 # grrr
64 SHELL = /bin/sh
65
66 .c.o:
67         $(CCCMD) $*.c
68
69 all: $(public) $(private) $(util)
70         touch all
71
72 a2p: $(obj) a2p.o
73         $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
74
75 # I now supply a2p.c with the kits, so the following section is
76 # used only if you force byacc to run by saying
77 # make  run_byacc
78
79 run_byacc:      FORCE
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.
86 a2p.c: a2p.y
87         -@touch a2p.c
88
89 a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
90         $(CCCMD) $(LARGE) a2p.c
91
92 clean:
93         rm -f a2p *.o
94
95 realclean: clean
96         rm -f *.orig core $(addedbyconf) all malloc.c
97         rm -f Makefile cflags find2perl s2p makefile makefile.old
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
104 lint:
105         lint $(lintflags) $(defs) $(c) > a2p.fuzz
106
107 depend: $(mallocsrc) ../makedepend
108         ../makedepend
109
110 clist:
111         echo $(c) | tr ' ' '\012' >.clist
112
113 hlist:
114         echo $(h) | tr ' ' '\012' >.hlist
115
116 shlist:
117         echo $(sh) | tr ' ' '\012' >.shlist
118
119 malloc.c: ../malloc.c
120         rm -f malloc.c
121         sed <../malloc.c >malloc.c \
122             -e 's/"perl.h"/"..\/perl.h"/' \
123             -e 's/my_exit/exit/'
124
125 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
126 $(obj):
127         @ echo "You haven't done a "'"make depend" yet!'; exit 1
128 makedepend: depend
129 !NO!SUBS!
130 $eunicefix Makefile
131 case `pwd` in
132 *SH)
133     $rm -f ../Makefile
134     ln Makefile ../Makefile
135     ;;
136 esac
137 rm -f makefile