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