perl5.000 patch.0e: fix various non-broken things in the x2p/ directory
[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 : Configure sets byacc=byacc if byacc is not found.  We reset it to ''
21 case "$byacc" in
22 'byacc') byacc='';;
23 esac
24
25 echo "Extracting x2p/Makefile (with variable substitutions)"
26 rm -f Makefile
27 cat >Makefile <<!GROK!THIS!
28 # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
29 #
30 # $Log: Makefile.SH,v $
31
32 CC = $cc
33 BYACC = $byacc
34 mansrc = $mansrc
35 manext = $manext
36 LDFLAGS = $ldflags
37 SMALL = $small
38 LARGE = $large $split
39 mallocsrc = $mallocsrc
40 mallocobj = $mallocobj
41 shellflags = $shellflags
42
43 libs = $libs
44 !GROK!THIS!
45
46 cat >>Makefile <<'!NO!SUBS!'
47
48 CCCMD = `sh $(shellflags) cflags $@`
49
50 public = a2p s2p find2perl
51
52 private = 
53
54 manpages = a2p.man s2p.man
55
56 util =
57
58 sh = Makefile.SH cflags.SH find2perl.SH s2p.SH
59
60 h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
61
62 c = hash.c $(mallocsrc) str.c util.c walk.c
63
64 obj = hash.o $(mallocobj) str.o util.o walk.o
65
66 lintflags = -phbvxac
67
68 # grrr
69 SHELL = /bin/sh
70
71 .c.o:
72         $(CCCMD) $*.c
73
74 all: $(public) $(private) $(util)
75         touch all
76
77 a2p: $(obj) a2p.o
78         $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
79
80 !NO!SUBS!
81
82 : Only print out the rules for running byacc if the user _has_ byacc.
83 : Otherwise, comment them out.  Users who really know what they are
84 : doing can uncomment them and run yacc or bison or whatever.
85 : Configure sets byacc=byacc if byacc is not found.
86 case "$byacc" in
87 '')
88         comment1='#' 
89         comment2='' ;;
90 *)      comment1=''
91         comment2='#' ;;
92 esac
93
94 $spitshell >>Makefile <<!GROK!THIS!
95
96 # I now supply a2p.c with the kits, so the following section is
97 # commented out if you don't have byacc.
98
99 ${comment1}a2p.c:       a2p.y
100 ${comment1}     @ echo Expect many shift/reduce and reduce/reduce conflicts
101 ${comment1}     \$(BYACC) a2p.y
102 ${comment1}     mv y.tab.c a2p.c
103
104 # This version is used if you do not have byacc.
105 ${comment2}a2p.c:       a2p.y
106 ${comment2}     touch a2p.c
107
108 !GROK!THIS!
109 cat >>Makefile <<'!NO!SUBS!'
110
111 a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
112         $(CCCMD) $(LARGE) a2p.c
113
114 clean:
115         rm -f a2p *.o 
116
117 realclean: clean
118         rm -f *.orig core $(addedbyconf) all malloc.c
119         rm -f Makefile cflags find2perl s2p makefile makefile.old
120
121 # The following lint has practically everything turned on.  Unfortunately,
122 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
123 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
124 # for that spot.
125
126 lint:
127         lint $(lintflags) $(defs) $(c) > a2p.fuzz
128
129 depend: $(mallocsrc) ../makedepend
130         ../makedepend
131
132 clist:
133         echo $(c) | tr ' ' '\012' >.clist
134
135 hlist:
136         echo $(h) | tr ' ' '\012' >.hlist
137
138 shlist:
139         echo $(sh) | tr ' ' '\012' >.shlist
140
141 malloc.c: ../malloc.c
142         sed <../malloc.c >malloc.c \
143             -e 's/"perl.h"/"..\/perl.h"/' \
144             -e 's/my_exit/exit/'
145
146 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
147 $(obj):
148         @ echo "You haven't done a "'"make depend" yet!'; exit 1
149 makedepend: depend
150 !NO!SUBS!
151 $eunicefix Makefile
152 case `pwd` in
153 *SH)
154     $rm -f ../Makefile
155     ln Makefile ../Makefile
156     ;;
157 esac
158 rm -f makefile