This is my patch patch.1n for perl5.001.
[p5sagit/p5-mst-13.2.git] / 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 case "$d_dosuid" in
21 *define*) suidperl='suidperl' ;;
22 *) suidperl='';;
23 esac
24
25 shrpenv=""
26 case "$d_shrplib" in
27 *define*)
28     patchlevel=`egrep '^#define[        ]+PATCHLEVEL' patchlevel.h \
29         | awk '{print $3}'`
30     case "$patchlevel" in
31      *[0-9]) plibsuf=.$so.$patchlevel;;
32      *)     plibsuf=.$so;;
33     esac
34     case "$shrpdir" in
35      /usr/lib)  ;;
36      "")        ;;
37      *)         shrpenv="env LD_RUN_PATH=$shrpdir";;
38     esac
39     pldlflags="$cccdlflags";;
40 *)  plibsuf=.a
41     pldlflags="";;
42 esac
43
44 : Prepare dependency lists for Makefile.
45 dynamic_list=' '
46 for f in $dynamic_ext; do
47     : the dependency named here will never exist
48       base=`echo "$f" | sed 's/.*\///'`
49     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
50 done
51
52 static_list=' '
53 static_ai_list=' '
54 for f in $static_ext; do
55         base=`echo "$f" | sed 's/.*\///'`
56         static_list="$static_list lib/auto/$f/$base.a"
57         if test -f ext/$f/AutoInit.c; then
58             static_ai_list="$static_ai_list ext/$f/AutoInit.c"
59         fi
60         if test -f ext/$f/AutoInit.pl; then
61             static_ai_list="$static_ai_list ext/$f/AutoInit.pl"
62         fi
63 done
64
65 echo "Extracting Makefile (with variable substitutions)"
66 $spitshell >Makefile <<'!NO!SUBS!'
67 # Makefile.SH
68 # This file is derived from Makefile.SH.  Any changes made here will
69 # be lost the next time you run Configure.
70 #  Makefile is used to generate makefile.  The only difference
71 #  is that makefile has the dependencies filled in at the end.
72 #
73 #
74 !NO!SUBS!
75
76 $spitshell >>Makefile <<!GROK!THIS!
77 # I now supply perly.c with the kits, so don't remake perly.c without byacc
78 BYACC = $byacc
79 CC = $cc
80 LD = $ld
81
82 LDFLAGS = $ldflags
83 CLDFLAGS = $ldflags
84
85 SMALL = $small
86 LARGE = $large $split
87 mallocsrc = $mallocsrc
88 mallocobj = $mallocobj
89 LNS = $lns
90 RMS = rm -f
91 ranlib = $ranlib
92
93 # The following are mentioned only to make metaconfig include the
94 # appropriate questions in Configure.  If you want to change these,
95 # edit config.sh instead, or specify --man1dir=/wherever on
96 # installman commandline.
97 bin = $installbin
98 scriptdir = $scriptdir
99 privlib = $installprivlib
100 man1dir = $man1dir
101 man1ext = $man1ext
102 man3dir = $man3dir
103 man3ext = $man3ext
104
105 # The following are used to build and install shared libraries for
106 # dynamic loading.
107 LDDLFLAGS = $lddlflags
108 CCDLFLAGS = $ccdlflags
109 DLSUFFIX = .$dlext
110 PLDLFLAGS = $pldlflags
111 PLIBSUF = $plibsuf
112 SHRPENV = $shrpenv
113
114 dynamic_ext = $dynamic_list
115 static_ext = $static_list
116 ext = \$(dynamic_ext) \$(static_ext)
117 static_ext_autoinit = $static_ai_list
118 DYNALOADER = lib/auto/DynaLoader/DynaLoader.a
119
120
121 libs = $libs $cryptlib
122
123 public = perl $suidperl
124
125 shellflags = $shellflags
126
127 ## To use an alternate make, set \$altmake in config.sh.
128 MAKE = ${altmake-make}
129 !GROK!THIS!
130
131 ## In the following dollars and backticks do not need the extra backslash.
132 $spitshell >>Makefile <<'!NO!SUBS!'
133
134 CCCMD = `sh $(shellflags) cflags $(perllib) $@`
135
136 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
137
138 sh = Makefile.SH c2ph.SH cflags.SH config_h.SH h2ph.SH h2xs.SH makeaperl.SH \
139         makedepend.SH makedir.SH perl_exp.SH perldoc.SH writemain.SH
140
141 addedbyconf = UU Makefile c2ph cflags config.h h2ph h2xs makeaperl \
142         makedepend makedir perl_exp perldoc writemain
143
144 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
145 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
146 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
147 h4 = regexp.h scope.h sv.h unixish.h util.h
148 h = $(h1) $(h2) $(h3) $(h4)
149
150 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
151 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
152 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c globals.c
153
154 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
155
156 obj1 = $(mallocobj) gv.o toke.o perly.o op.o regcomp.o dump.o util.o mg.o
157 obj2 = hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o
158 obj3 = doop.o doio.o regexec.o taint.o deb.o globals.o
159
160 obj = $(obj1) $(obj2) $(obj3)
161
162 # Once perl has been Configure'd and built ok you build different
163 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
164 #       make clean; make perllib=libperl<type>.a
165 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
166 # See cflags to understand how this works.
167 #
168 # Eventually some form of 'make-a-perl' script will automate this
169 # together with linking a perl executable with any desired
170 # static modules.
171 perllib = libperl$(PLIBSUF)
172
173 lintflags = -hbvxac
174
175 # grrr
176 SHELL = /bin/sh
177
178 .c.o:
179         $(CCCMD) $(PLDLFLAGS) $*.c
180
181 all: makefile miniperl $(private) $(public) $(dynamic_ext)
182         @echo " "; echo "       Making x2p stuff"; cd x2p; $(MAKE) all
183
184 # This is now done by installman only if you actually want the man pages.
185 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
186
187 # Phony target to force checking subdirectories.
188 # Apparently some makes require an action for the FORCE target.
189 FORCE:
190         @true
191
192 # The $& notation tells Sequent machines that it can do a parallel make,
193 # and is harmless otherwise.
194
195 miniperl: $& miniperlmain.o $(perllib)
196         $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain.o $(perllib) $(libs)
197
198 miniperlmain.o: miniperlmain.c
199         $(CCCMD) $(PLDLFLAGS) $*.c
200
201 perlmain.c: miniperlmain.c config.sh makefile $(static_ext_autoinit)
202         sh writemain $(DYNALOADER) $(static_ext) > tmp
203         sh mv-if-diff tmp perlmain.c
204
205 perlmain.o: perlmain.c
206         $(CCCMD) $(PLDLFLAGS) $*.c
207
208 # The file ext.libs is a list of libraries that must be linked in
209 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
210 # static extension Makefile's add to it.
211 ext.libs: $(static_ext)
212         -@test -f ext.libs || touch ext.libs
213
214 perl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
215         $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
216
217 pureperl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
218         purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
219
220 quantperl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
221         quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
222
223 $(perllib): $& perl.o $(obj)
224 !NO!SUBS!
225
226 case "$d_shrplib" in
227 *define*)
228 $spitshell >>Makefile <<'!NO!SUBS!'
229         $(LD) $(LDDLFLAGS) -o $@ perl.o $(obj)
230 !NO!SUBS!
231 ;;
232 *)
233 $spitshell >>Makefile <<'!NO!SUBS!'
234         rm -f $(perllib)
235         ar rcu $(perllib) perl.o $(obj)
236         @$(ranlib) $(perllib)
237 !NO!SUBS!
238 ;;
239 esac
240
241 $spitshell >>Makefile <<'!NO!SUBS!'
242
243 # This version, if specified in Configure, does ONLY those scripts which need
244 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
245 # checks as well as the special code to validate that the script in question
246 # has been invoked correctly.
247
248 suidperl: $& sperl.o perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
249         $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain.o sperl.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
250
251 sperl.o: perl.c perly.h patchlevel.h $(h)
252         $(RMS) sperl.c
253         $(LNS) perl.c sperl.c
254         $(CCCMD) -DIAMSUID sperl.c
255         $(RMS) sperl.c
256
257 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
258 #       test -d lib/auto || mkdir lib/auto
259 #
260 preplibrary: miniperl lib/Config.pm
261         @./makedir lib/auto
262         @echo " AutoSplitting perl library"
263         @./miniperl -Ilib -e 'use AutoSplit; \
264                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
265
266 # Take care to avoid modifying lib/Config.pm without reason
267 lib/Config.pm: config.sh miniperl
268         ./miniperl configpm tmp
269         sh mv-if-diff tmp lib/Config.pm
270
271 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.PL lib/Config.pm
272         ./miniperl minimod.PL > tmp && mv tmp $@
273
274 install: all install.perl install.man
275
276 install.perl:   all
277         ./perl installperl
278
279 install.man:    all
280         ./perl installman
281
282 # Not implemented yet.
283 #install.html:  all
284 #       ./perl installhtml
285
286 # I now supply perly.c with the kits, so the following section is
287 # used only if you force byacc to run by saying
288 #       make run_byacc
289 # Since we patch up the byacc output, the perly.fixer script needs
290 # to run with precisely the same version of byacc as I use.  You
291 # normally shouldn't remake perly.[ch].
292
293 run_byacc:      FORCE
294         @ echo 'Expect' 109 shift/reduce and 1 reduce/reduce conflict
295         $(BYACC) -d perly.y
296         sh $(shellflags) ./perly.fixer y.tab.c perly.c
297         mv y.tab.h perly.h
298         echo 'extern YYSTYPE yylval;' >>perly.h
299
300 # We don't want to regenerate perly.c and perly.h, but they might
301 # appear out-of-date after a patch is applied or a new distribution is
302 # made.
303 perly.c: perly.y
304         -@touch perly.c
305
306 perly.h: perly.y
307         -@touch perly.h
308
309 # The following three header files are generated automatically
310 #       keywords.h:     keywords.pl
311 #       opcode.h:       opcode.pl
312 #       embed.h:        embed.pl global.sym interp.sym
313 # The correct versions should be already supplied with the perl kit,
314 # in case you don't have perl available.
315 # To force them to run, type
316 #       make regen_headers
317 regen_headers:  FORCE
318         perl keywords.pl
319         perl opcode.pl
320         perl embed.pl
321
322 # Extensions:
323 # Names added to $(dynamic_ext) or $(static_ext) will automatically
324 # get built.  There should ordinarily be no need to change any of
325 # this part of makefile.
326 #
327 # The dummy dependency is a place holder in case $(dynamic_ext) or
328 # $(static_ext) is empty.
329 #
330 # DynaLoader may be needed for extensions that use Makefile.PL.
331
332 $(DYNALOADER):  miniperl preplibrary FORCE
333         @sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)
334
335 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
336         @sh ext/util/make_ext dynamic $@ LIBPERL_A=$(perllib)
337
338 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
339         @sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)
340
341 clean:
342         rm -f *.o *.a all perlmain.c
343         rm -f perl.exp ext.libs
344         -cd x2p; $(MAKE) clean
345         -cd pod; $(MAKE) clean
346         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
347         sh ext/util/make_ext clean $$x ; \
348         done
349         rm -f perl suidperl miniperl $(perllib)
350
351 realclean: clean
352         -cd x2p; $(MAKE) realclean
353         -cd pod; $(MAKE) realclean
354         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
355         sh ext/util/make_ext realclean $$x ; \
356         done
357         rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
358         rm -rf $(addedbyconf)
359         rm -f makefile makefile.old
360         rm -f $(private)
361         rm -rf lib/auto
362         rm -f lib/.exists
363         rm -f h2ph.man pstruct
364         rm -rf .config
365         @echo "Note that make realclean does not delete config.sh"
366
367 clobber:        realclean
368         rm -f config.sh cppstdin
369
370 distclean:      clobber
371
372 # The following lint has practically everything turned on.  Unfortunately,
373 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
374 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
375 # for that spot.
376
377 lint: perly.c $(c)
378         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
379
380 makefile:       Makefile
381         $(MAKE) depend
382
383 config.h: config.sh
384         /bin/sh config_h.SH
385
386 # When done, touch perlmain.c so that it doesn't get remade each time.
387 depend: makedepend
388         ./makedepend
389         - test -s perlmain.c && touch perlmain.c
390         cd x2p; $(MAKE) depend
391
392 test: miniperl perl preplibrary $(dynamic_ext)
393         - cd t && chmod +x TEST */*.t
394         - cd t && (rm -f perl; $(LNS) ../perl perl) && ./perl TEST </dev/tty
395
396 minitest: miniperl
397         - cd t && chmod +x TEST */*.t
398         - cd t && (rm -f perl; $(LNS) ../miniperl perl) \
399                 && ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t </dev/tty
400
401 clist:  $(c)
402         echo $(c) | tr ' ' '\012' >.clist
403
404 hlist:  $(h)
405         echo $(h) | tr ' ' '\012' >.hlist
406
407 shlist: $(sh)
408         echo $(sh) | tr ' ' '\012' >.shlist
409
410 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
411 # If this runs make out of memory, delete /usr/include lines.
412 !NO!SUBS!
413
414 $eunicefix Makefile
415 case `pwd` in
416 *SH)
417     $rm -f ../Makefile
418     ln Makefile ../Makefile
419     ;;
420 esac
421 rm -f makefile