perl 3.0 patch #2 (combined patch)
[p5sagit/p5-mst-13.2.git] / Makefile.SH
1 case $CONFIG in
2 '')
3     if test ! -f config.sh; then
4         ln ../config.sh . || \
5         ln ../../config.sh . || \
6         ln ../../../config.sh . || \
7         (echo "Can't find config.sh."; exit 1)
8     fi
9     . ./config.sh
10     ;;
11 esac
12 case "$0" in
13 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
14 esac
15
16 case "$d_symlink" in
17 *define*) sln='ln -s' ;;
18 *) sln='ln';;
19 esac
20
21 case "$d_dosuid" in
22 *define*) suidperl='suidperl' ;;
23 *) suidperl='';;
24 esac
25
26 echo "Extracting Makefile (with variable substitutions)"
27 cat >Makefile <<!GROK!THIS!
28 # $Header: Makefile.SH,v 3.0.1.2 89/11/11 04:07:30 lwall Locked $
29 #
30 # $Log: Makefile.SH,v $
31 # Revision 3.0.1.2  89/11/11  04:07:30  lwall
32 # patch2: $sockethdr incorporated into $ccflags
33 # patch2: $libs now has most of the -l libraries
34
35 # Revision 3.0.1.1  89/10/26  23:00:38  lwall
36 # patch1: Makefile.SH needed some more .h dependecies
37
38 # Revision 3.0  89/10/18  15:06:43  lwall
39 # 3.0 baseline
40
41
42 CC = $cc
43 bin = $bin
44 privlib = $privlib
45 mansrc = $mansrc
46 manext = $manext
47 CFLAGS = $ccflags $optimize
48 LDFLAGS = $ldflags
49 SMALL = $small
50 LARGE = $large $split
51 mallocsrc = $mallocsrc
52 mallocobj = $mallocobj
53 SLN = $sln
54
55 libs = $libs -lm
56
57 public = perl taintperl $suidperl
58
59 !GROK!THIS!
60
61 cat >>Makefile <<'!NO!SUBS!'
62 private = 
63
64 MAKE = make
65
66 manpages = perl.man
67
68 util =
69
70 sh = Makefile.SH makedepend.SH
71
72 h1 = EXTERN.h INTERN.h arg.h array.h cmd.h config.h form.h handy.h
73 h2 = hash.h perl.h regcomp.h regexp.h spat.h stab.h str.h util.h
74
75 h = $(h1) $(h2)
76
77 c1 = array.c cmd.c cons.c consarg.c doarg.c doio.c dolist.c dump.c
78 c2 = eval.c form.c hash.c $(mallocsrc) perly.c regcomp.c regexec.c
79 c3 = stab.c str.c toke.c util.c
80
81 c = $(c1) $(c2) $(c3)
82
83 obj1 = array.o cmd.o cons.o consarg.o doarg.o doio.o dolist.o dump.o
84 obj2 = eval.o form.o hash.o $(mallocobj) perly.o regcomp.o regexec.o
85 obj3 = stab.o str.o toke.o util.o
86
87 obj = $(obj1) $(obj2) $(obj3)
88
89 tobj1 = tarray.o tcmd.o tcons.o tconsarg.o tdoarg.o tdoio.o tdolist.o tdump.o
90 tobj2 = teval.o tform.o thash.o $(mallocobj) tregcomp.o tregexec.o
91 tobj3 = tstab.o tstr.o ttoke.o tutil.o
92
93 tobj = $(tobj1) $(tobj2) $(tobj3)
94
95 lintflags = -hbvxac
96
97 addedbyconf = Makefile.old bsd eunice filexp loc pdp11 usg v7
98
99 # grrr
100 SHELL = /bin/sh
101
102 .c.o:
103         $(CC) -c $(CFLAGS) $(LARGE) $*.c
104
105 all: $(public) $(private) $(util) perl.man x2p/all
106         touch all
107
108 x2p/all:
109         cd x2p; $(MAKE) all
110
111 # This is the standard version that contains no "taint" checks and is
112 # used for all scripts that aren't set-id or running under something set-id.
113
114 perl: perl.o $(obj)
115         $(CC) $(LARGE) $(LDFLAGS) $(obj) perl.o $(libs) -o perl
116
117 # This version, if specified in Configure, does ONLY those scripts which need
118 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
119 # checks as well as the special code to validate that the script in question
120 # has been invoked correctly.
121
122 suidperl: tperl.o sperly.o $(tobj)
123         $(CC) $(LARGE) $(LDFLAGS) sperly.o $(tobj) tperl.o $(libs) -o suidperl
124
125 # This version interprets scripts that are already set-id either via a wrapper
126 # or through the kernel allowing set-id scripts (bad idea).  Taintperl must
127 # NOT be setuid to root or anything else.  The only difference between it
128 # and normal perl is the presence of the "taint" checks.
129
130 taintperl: tperl.o tperly.o $(tobj)
131         $(CC) $(LARGE) $(LDFLAGS) tperly.o $(tobj) tperl.o $(libs) -o taintperl
132
133 # Replicating all this junk is yucky, but I don't see a portable way to fix it.
134
135 tperl.o: perl.c perly.h $(h)
136         /bin/rm -f tperl.c
137         $(SLN) perl.c tperl.c
138         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tperl.c
139         /bin/rm -f tperl.c
140
141 tperly.o: perly.c perly.h $(h)
142         /bin/rm -f tperly.c
143         $(SLN) perly.c tperly.c
144         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tperly.c
145         /bin/rm -f tperly.c
146
147 sperly.o: perly.c perly.h patchlevel.h $(h)
148         /bin/rm -f sperly.c
149         $(SLN) perly.c sperly.c
150         $(CC) -c -DTAINT -DIAMSUID $(CFLAGS) $(LARGE) sperly.c
151         /bin/rm -f sperly.c
152
153 tarray.o: array.c $(h)
154         /bin/rm -f tarray.c
155         $(SLN) array.c tarray.c
156         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tarray.c
157         /bin/rm -f tarray.c
158
159 tcmd.o: cmd.c $(h)
160         /bin/rm -f tcmd.c
161         $(SLN) cmd.c tcmd.c
162         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tcmd.c
163         /bin/rm -f tcmd.c
164
165 tcons.o: cons.c $(h)
166         /bin/rm -f tcons.c
167         $(SLN) cons.c tcons.c
168         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tcons.c
169         /bin/rm -f tcons.c
170
171 tconsarg.o: consarg.c $(h)
172         /bin/rm -f tconsarg.c
173         $(SLN) consarg.c tconsarg.c
174         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tconsarg.c
175         /bin/rm -f tconsarg.c
176
177 tdoarg.o: doarg.c $(h)
178         /bin/rm -f tdoarg.c
179         $(SLN) doarg.c tdoarg.c
180         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tdoarg.c
181         /bin/rm -f tdoarg.c
182
183 tdoio.o: doio.c $(h)
184         /bin/rm -f tdoio.c
185         $(SLN) doio.c tdoio.c
186         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tdoio.c
187         /bin/rm -f tdoio.c
188
189 tdolist.o: dolist.c $(h)
190         /bin/rm -f tdolist.c
191         $(SLN) dolist.c tdolist.c
192         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tdolist.c
193         /bin/rm -f tdolist.c
194
195 tdump.o: dump.c $(h)
196         /bin/rm -f tdump.c
197         $(SLN) dump.c tdump.c
198         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tdump.c
199         /bin/rm -f tdump.c
200
201 teval.o: eval.c $(h)
202         /bin/rm -f teval.c
203         $(SLN) eval.c teval.c
204         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) teval.c
205         /bin/rm -f teval.c
206
207 tform.o: form.c $(h)
208         /bin/rm -f tform.c
209         $(SLN) form.c tform.c
210         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tform.c
211         /bin/rm -f tform.c
212
213 thash.o: hash.c $(h)
214         /bin/rm -f thash.c
215         $(SLN) hash.c thash.c
216         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) thash.c
217         /bin/rm -f thash.c
218
219 tregcomp.o: regcomp.c $(h)
220         /bin/rm -f tregcomp.c
221         $(SLN) regcomp.c tregcomp.c
222         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tregcomp.c
223         /bin/rm -f tregcomp.c
224
225 tregexec.o: regexec.c $(h)
226         /bin/rm -f tregexec.c
227         $(SLN) regexec.c tregexec.c
228         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tregexec.c
229         /bin/rm -f tregexec.c
230
231 tstab.o: stab.c $(h)
232         /bin/rm -f tstab.c
233         $(SLN) stab.c tstab.c
234         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tstab.c
235         /bin/rm -f tstab.c
236
237 tstr.o: str.c $(h)
238         /bin/rm -f tstr.c
239         $(SLN) str.c tstr.c
240         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tstr.c
241         /bin/rm -f tstr.c
242
243 ttoke.o: toke.c $(h)
244         /bin/rm -f ttoke.c
245         $(SLN) toke.c ttoke.c
246         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) ttoke.c
247         /bin/rm -f ttoke.c
248
249 tutil.o: util.c $(h)
250         /bin/rm -f tutil.c
251         $(SLN) util.c tutil.c
252         $(CC) -c -DTAINT $(CFLAGS) $(LARGE) tutil.c
253         /bin/rm -f tutil.c
254
255 perl.c perly.h: perl.y
256         @ echo Expect 25 shift/reduce errors...
257         yacc -d perl.y
258         mv y.tab.c perl.c
259         mv y.tab.h perly.h
260
261 perl.o: perl.c perly.h $(h)
262         $(CC) -c $(CFLAGS) $(LARGE) perl.c
263
264 perl.man: perl.man.1 perl.man.2 perl.man.3 perl.man.4 patchlevel.h perl
265         ./perl  -e '($$r,$$p)=$$]=~/(\d+\.\d+).*\n\D*(\d+)/;' \
266                 -e 'print ".ds RP Release $$r Patchlevel $$p\n";' >perl.man
267         cat perl.man.[1-4] >>perl.man
268
269 install: all
270 # won't work with csh
271         export PATH || exit 1
272         - rm -f $(bin)/perl.old $(bin)/suidperl $(bin)/taintperl
273         - mv $(bin)/perl $(bin)/perl.old 2>/dev/null
274         - if test `pwd` != $(bin); then cp $(public) $(bin); fi
275         - cd $(bin); \
276 for pub in $(public); do \
277 chmod +x `basename $$pub`; \
278 done
279         - chmod 755 $(bin)/taintperl 2>/dev/null
280 !NO!SUBS!
281
282 case "$d_dosuid" in
283 *define*)
284     cat >>Makefile <<'!NO!SUBS!'
285         - chmod 4711 $(bin)/suidperl 2>/dev/null
286 !NO!SUBS!
287     ;;
288 esac
289
290 cat >>Makefile <<'!NO!SUBS!'
291         - test $(bin) = /usr/bin || rm -f /usr/bin/perl
292         - test $(bin) = /usr/bin || $(SLN) $(bin)/perl /usr/bin || cp $(bin)/perl /usr/bin
293         - sh ./makedir $(privlib)
294         - \
295 if test `pwd` != $(privlib); then \
296 cp $(private) lib/*.pl $(privlib); \
297 fi
298 #       cd $(privlib); \
299 #for priv in $(private); do \
300 #chmod +x `basename $$priv`; \
301 #done
302         - if test `pwd` != $(mansrc); then \
303 for page in $(manpages); do \
304 cp $$page $(mansrc)/`basename $$page .man`.$(manext); \
305 done; \
306 fi
307         cd x2p; $(MAKE) install
308
309 clean:
310         rm -f *.o all perl taintperl perl.man
311         cd x2p; $(MAKE) clean
312
313 realclean:
314         cd x2p; $(MAKE) realclean
315         rm -f perl *.orig */*.orig *~ */*~ *.o core $(addedbyconf) perl.man
316         rm -f perl.c perly.h t/perl Makefile config.h makedepend makedir
317         rm -f x2p/Makefile
318
319 # The following lint has practically everything turned on.  Unfortunately,
320 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
321 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
322 # for that spot.
323
324 lint: perl.c $(c)
325         lint $(lintflags) $(defs) perl.c $(c) > perl.fuzz
326
327 depend: makedepend
328         - test -f perly.h || cp /dev/null perly.h
329         ./makedepend
330         - test -s perly.h || /bin/rm -f perly.h
331         cd x2p; $(MAKE) depend
332
333 test: perl
334         - chmod +x t/TEST t/base.* t/comp.* t/cmd.* t/io.* t/op.*; \
335         cd t && (rm -f perl; $(SLN) ../perl .) && ./perl TEST
336
337 clist:
338         echo $(c) | tr ' ' '\012' >.clist
339
340 hlist:
341         echo $(h) | tr ' ' '\012' >.hlist
342
343 shlist:
344         echo $(sh) | tr ' ' '\012' >.shlist
345
346 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
347 perly.o $(obj):
348         @ echo "You haven't done a "'"make depend" yet!'; exit 1
349 makedepend: makedepend.SH
350         /bin/sh makedepend.SH
351 !NO!SUBS!
352 $eunicefix Makefile
353 case `pwd` in
354 *SH)
355     $rm -f ../Makefile
356     ln Makefile ../Makefile
357     ;;
358 esac