This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: Strange segfault
[perl5.git] / Makefile.SH
1 #! /bin/sh
2 case $PERL_CONFIG_SH in
3 '')
4         if test -f config.sh
5                 then TOP=.
6         else
7                 echo "Can't find config.sh."; exit 1
8         fi
9         . $TOP/config.sh
10         ;;
11 esac
12
13 # H.Merijn Brand [17 Feb 2004]
14 # This comment is just to ensure that Configure will find variables that
15 # are removed/replaced in patches on blead, but are still needed in the
16 # 5.8.x, 5.6.x and 5.005.x maintainance tracks.
17 # metaconfig -m will scan all .SH files on this level (not deeper), and
18 # not in x2p and other subfolders. This file is as good as any .SH
19 # patch   references
20 # #22227 $baserev
21 # #22302 $yacc $byacc
22
23 : This forces SH files to create target in same directory as SH file.
24 : This is so that make depend always knows where to find SH derivatives.
25 case "$0" in
26 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
27 esac
28
29 case "$d_dosuid" in
30 *define*) suidperl='suidperl' ;;
31 *) suidperl='';;
32 esac
33
34 linklibperl='$(LIBPERL)'
35 shrpldflags='$(LDDLFLAGS)'
36 ldlibpth=''
37 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
38 case "$useshrplib" in
39 true)
40         # Prefix all runs of 'miniperl' and 'perl' with
41         # $ldlibpth so that ./perl finds *this* shared libperl.
42         case "$LD_LIBRARY_PATH" in
43         '')
44                 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
45         *)
46                 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
47         esac
48
49         pldlflags="$cccdlflags"
50         static_target='static_pic'
51         case "${osname}${osvers}" in
52         next4*)
53                 ld=libtool
54                 lddlflags="-dynamic -undefined warning -framework System \
55                 -compatibility_version 1 -current_version $patchlevel \
56                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
57                 ;;
58         rhapsody*|darwin*)
59                 shrpldflags="${ldflags} -dynamiclib \
60                             -compatibility_version \
61                                 ${api_revision}.${api_version}.${api_subversion} \
62                              -current_version \
63                                 ${revision}.${patchlevel}.${subversion} \
64                              -install_name \$(shrpdir)/\$@"
65                 ;;
66         cygwin*)
67                 linklibperl="-lperl"
68                 ;;
69         sunos*)
70                 linklibperl="-lperl"
71                 ;;
72         netbsd*|freebsd[234]*|openbsd*)
73                 linklibperl="-L. -lperl"
74                 ;;
75         aix*)
76                 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
77                 case "$osvers" in
78                 3*)     shrpldflags="$shrpldflags -e _nostart"
79                         ;;
80                 *)      shrpldflags="$shrpldflags -b noentry"
81                         ;;
82                 esac
83                 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
84                 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
85                 ;;
86         hpux*)
87                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
88                 ;;
89         os390*)
90             shrpldflags='-W l,dll'
91             linklibperl='libperl.x'
92             DPERL_EXTERNAL_GLOB=''
93             ;;
94         esac
95         case "$ldlibpthname" in
96         '') ;;
97         *)
98             case "$osname" in
99             os2)
100                 ldlibpth=''
101                 ;;
102             *)
103                 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
104                 ;;
105             esac
106             # Strip off any trailing :'s
107             ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
108             ;;
109         esac
110
111         case "$ldlibpth" in
112         # Protect any spaces
113         *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
114         esac
115
116         case "$osname" in
117         linux)
118             # If there is a pre-existing $libperl from a previous
119             # installation, Linux needs to use LD_PRELOAD to
120             # override the LD_LIBRARY_PATH setting.  See the
121             # INSTALL file, under "Building a shared perl library".
122             # If there is no pre-existing $libperl, we don't need
123             # to do anything further.
124             if test -f $archlib/CORE/$libperl; then
125                 rm -f preload
126                 cat <<'EOT' > preload
127 #! /bin/sh
128 lib=$1
129 shift
130 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
131 exec "$@"
132 EOT
133                 chmod 755 preload
134                 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
135             fi
136             ;;
137         os390)  test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
138                 ;;
139         esac
140
141         ;;
142
143 *)      pldlflags=''
144         static_target='static'
145         ;;
146 esac
147
148 : Prepare dependency lists for Makefile.
149 dynamic_list=' '
150 for f in $dynamic_ext; do
151     : the dependency named here will never exist
152       base=`echo "$f" | sed 's/.*\///'`
153     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
154 done
155
156 static_list=' '
157 for f in $static_ext; do
158         base=`echo "$f" | sed 's/.*\///'`
159         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
160 done
161
162 nonxs_list=' '
163 for f in $nonxs_ext; do
164     base=`echo "$f" | sed 's/.*\///'`
165     nonxs_list="$nonxs_list ext/$f/pm_to_blib"
166 done
167
168 echo "Extracting Makefile (with variable substitutions)"
169 $spitshell >Makefile <<!GROK!THIS!
170 # Makefile.SH
171 # This file is derived from Makefile.SH.  Any changes made here will
172 # be lost the next time you run Configure.
173 #  Makefile is used to generate $firstmakefile.  The only difference
174 #  is that $firstmakefile has the dependencies filled in at the end.
175
176 CC = $cc
177 LD = $ld
178
179 LDFLAGS = $ldflags
180 CLDFLAGS = $ldflags
181
182 mallocsrc = $mallocsrc
183 mallocobj = $mallocobj
184 LNS = $lns
185 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
186 CPS = $cp
187 RMS = rm -f
188 ranlib = $ranlib
189
190 # The following are mentioned only to make metaconfig include the
191 # appropriate questions in Configure.  If you want to change these,
192 # edit config.sh instead, or specify --man1dir=/wherever on
193 # installman commandline.
194 bin = $installbin
195 scriptdir = $scriptdir
196 shrpdir = $archlibexp/CORE
197 privlib = $installprivlib
198 man1dir = $man1dir
199 man1ext = $man1ext
200 man3dir = $man3dir
201 man3ext = $man3ext
202
203 # The following are used to build and install shared libraries for
204 # dynamic loading.
205 LDDLFLAGS = $lddlflags
206 SHRPLDFLAGS = $shrpldflags
207 CCDLFLAGS = $ccdlflags
208 DLSUFFIX = .$dlext
209 PLDLFLAGS = $pldlflags
210 LIBPERL = $libperl
211 LLIBPERL= $linklibperl
212 SHRPENV = $shrpenv
213
214 # Static targets are ordinarily built without CCCDLFLAGS.  However,
215 # if building a shared libperl.so that might later be linked into
216 # another application, then it might be appropriate to also build static
217 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
218 # for GNU cc).  This is handled by ext/util/make_ext.
219 STATIC = $static_target
220
221 # The following is used to include the current directory in
222 # the dynamic loader path you are building a shared libperl.
223 LDLIBPTH = $ldlibpth
224
225 dynamic_ext = $dynamic_list
226 static_ext = $static_list
227 nonxs_ext = $nonxs_list
228 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
229 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
230
231 libs = $perllibs $cryptlib
232
233 public = perl\$(EXE_EXT) $suidperl utilities translators
234
235 shellflags = $shellflags
236
237 # This is set to  MAKE=$make if your $make command doesn't
238 # do it for you.
239 $make_set_make
240
241 # Mention $gmake here so it gets probed for by Configure.
242
243 # These variables may need to be manually set for non-Unix systems.
244 AR = $full_ar
245 EXE_EXT = $_exe
246 LIB_EXT = $_a
247 OBJ_EXT = $_o
248 PATH_SEP = $p_
249
250 FIRSTMAKEFILE = $firstmakefile
251
252 # Any special object files needed by this architecture, e.g. os2/os2.obj
253 ARCHOBJS = $archobjs
254
255 .SUFFIXES: .c \$(OBJ_EXT) .i .s
256
257 # grrr
258 SHELL = $sh
259
260 # how to tr(anslate) newlines
261 TRNL = '$trnl'
262
263 OPTIMIZE = $optimize
264
265 EXTRAS = $extras
266
267 INSTALLPREFIXEXP = $prefix
268
269 !GROK!THIS!
270 # not used by Makefile but by installperl;
271 # mentioned here so that metaconfig picks these up
272 # $installusrbinperl
273 # $versiononly
274
275 case "${osname}:${osvers}" in
276 darwin:*)
277 $spitshell >>Makefile <<EOF
278
279 # Your locales are broken (osname $osname, osvers $osvers)
280 # and to avoid the numerous
281 # perl: warning: Setting locale failed.
282 # warnings during the build process we reset the locale variables.
283
284 LC_ALL=C
285 LANG=C
286 LANGUAGE=C
287 EOF
288         ;;
289 esac
290
291 ## In the following dollars and backticks do not need the extra backslash.
292 $spitshell >>Makefile <<'!NO!SUBS!'
293
294 CCCMD    = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
295
296 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
297
298 private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
299
300 # Files to be built with variable substitution before miniperl
301 # is available.
302 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
303         makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
304
305 shextract = Makefile cflags config.h makeaperl makedepend \
306         makedir myconfig writemain pod/Makefile
307
308 # Files to be built with variable substitution after miniperl is
309 # available.  Dependencies handled manually below (for now).
310
311 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
312         pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
313
314 # lib/lib.pm is not listed here because it has a rule of its own.
315 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
316         pod/pod2usage pod/podchecker pod/podselect
317
318 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
319
320 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
321 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
322 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
323 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
324 h5 = utf8.h warnings.h
325 h = $(h1) $(h2) $(h3) $(h4) $(h5)
326
327 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
328 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
329 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
330 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
331
332 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
333
334 obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT)
335 obj2 = hv$(OBJ_EXT) av$(OBJ_EXT) run$(OBJ_EXT) pp_hot$(OBJ_EXT) sv$(OBJ_EXT) pp$(OBJ_EXT) scope$(OBJ_EXT) pp_ctl$(OBJ_EXT) pp_sys$(OBJ_EXT)
336 obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) xsutils$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT)
337
338 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
339
340 lintflags = -hbvxac
341
342 .c$(OBJ_EXT):
343         $(CCCMD) $(PLDLFLAGS) $*.c
344
345 .c.i:
346         $(CCCMDSRC) -E $*.c > $*.i
347
348 .c.s:
349         $(CCCMDSRC) -S $*.c
350
351 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
352         @echo " ";
353         @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
354
355 .PHONY: all compile translators utilities
356
357 compile: all
358         echo "testing compilation" > testcompile;
359         cd utils;  $(MAKE) compile;
360         cd x2p; $(MAKE) compile;
361         cd pod; $(MAKE) compile;
362
363 translators:    miniperl$(EXE_EXT) lib/Config.pm FORCE
364         @echo " "; echo "       Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
365
366 utilities:      miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
367         @echo " "; echo "       Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
368
369
370 # This is now done by installman only if you actually want the man pages.
371 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
372
373 # Phony target to force checking subdirectories.
374 # Apparently some makes require an action for the FORCE target.
375 .PHONY: FORCE
376 FORCE:
377         @sh -c true
378 !NO!SUBS!
379 $spitshell >>Makefile <<!GROK!THIS!
380
381 # We do a copy of the op.c instead of a symlink because gcc gets huffy
382 # if we have a symlink forest to another disk (it complains about too many
383 # levels of symbolic links, even if we have only two)
384
385 opmini\$(OBJ_EXT): op.c config.h
386         \$(RMS) opmini.c
387         \$(CPS) op.c opmini.c
388         \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
389         \$(RMS) opmini.c
390
391 !GROK!THIS!
392 $spitshell >>Makefile <<'!NO!SUBS!'
393 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
394         $(CCCMD) $(PLDLFLAGS) $*.c
395
396 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
397         sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
398         sh mv-if-diff writemain.tmp perlmain.c
399
400 !NO!SUBS!
401 case "$osname" in
402 cygwin)
403         ;; # Let cygwin/Makefile.SHs do its work.
404 *)
405         $spitshell >>Makefile <<'!NO!SUBS!'
406 perlmain$(OBJ_EXT): perlmain.c
407         $(CCCMD) $(PLDLFLAGS) $*.c
408
409 !NO!SUBS!
410         ;;
411 esac
412 $spitshell >>Makefile <<'!NO!SUBS!'
413 # The file ext.libs is a list of libraries that must be linked in
414 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
415 # static extension Makefile's add to it.
416 ext.libs: $(static_ext)
417         -@test -f ext.libs || touch ext.libs
418
419 !NO!SUBS!
420
421 # How to build libperl.  This is still rather convoluted.
422 # Load up custom Makefile.SH fragment for shared loading and executables:
423 case "$osname" in
424 *)
425         Makefile_s="$osname/Makefile.SHs"
426         ;;
427 esac
428
429 case "$osname" in
430 aix)
431         $spitshell >>Makefile <<!GROK!THIS!
432 LIBS                    = $perllibs
433 # In AIX we need to change this for building Perl itself from
434 # its earlier definition (which is for building external
435 # extensions *after* Perl has been built and installed)
436 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
437
438 !GROK!THIS!
439         case "$useshrplib" in
440         define|true|[yY]*)
441                 $spitshell >>Makefile <<'!NO!SUBS!'
442
443 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
444 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
445
446 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
447         $(RMS) $(LIBPERL_NONSHR)
448         $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
449
450 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
451         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
452             opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
453
454 MINIPERLEXP             = $(MINIPERL_NONSHR)
455
456 LIBPERLEXPORT           = perl.exp
457
458 !NO!SUBS!
459                 
460                 ;;
461         *)      
462                 $spitshell >>Makefile <<'!NO!SUBS!'
463 MINIPERLEXP             = miniperl$(EXE_EXT)
464
465 PERLEXPORT              = perl.exp
466
467 !NO!SUBS!
468         ;;
469         esac
470         $spitshell >>Makefile <<'!NO!SUBS!'
471 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
472         ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp
473         sh mv-if-diff perl.exp.tmp perl.exp
474
475 !NO!SUBS!
476         ;;
477 os2)
478         $spitshell >>Makefile <<'!NO!SUBS!'
479 MINIPERLEXP             = miniperl
480
481 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
482         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp
483         sh mv-if-diff perl.exp.tmp perl5.def
484
485 !NO!SUBS!
486         ;;
487 esac
488
489 if test -r $Makefile_s ; then
490         . $Makefile_s
491         $spitshell >>Makefile <<!GROK!THIS!
492
493 Makefile: $Makefile_s
494 !GROK!THIS!
495 else
496         $spitshell >>Makefile <<'!NO!SUBS!'
497 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
498 !NO!SUBS!
499         case "$useshrplib" in
500         true)
501                 $spitshell >>Makefile <<'!NO!SUBS!'
502         $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs)
503 !NO!SUBS!
504                 case "$osname" in
505                 aix)
506                         $spitshell >>Makefile <<'!NO!SUBS!'
507         rm -f libperl$(OBJ_EXT)
508         mv $@ libperl$(OBJ_EXT)
509         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
510 !NO!SUBS!
511                         ;;
512                 esac
513                 ;;
514         *)
515                 $spitshell >>Makefile <<'!NO!SUBS!'
516         rm -f $(LIBPERL)
517         $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
518         @$(ranlib) $(LIBPERL)
519 !NO!SUBS!
520                 ;;
521         esac
522         $spitshell >>Makefile <<'!NO!SUBS!'
523
524 # How to build executables.
525
526 # The $& notation tells Sequent machines that it can do a parallel make,
527 # and is harmless otherwise.
528 # The miniperl -w -MExporter line is a basic cheap test to catch errors
529 # before make goes on to run preplibrary and then MakeMaker on extensions.
530 # This is very handy because later errors are often caused by miniperl
531 # build problems but that's not obvious to the novice.
532 # The Module used here must not depend on Config or any extensions.
533
534 !NO!SUBS!
535
536         case "${osname}${osvers}" in
537         aix*)
538                 $spitshell >>Makefile <<'!NO!SUBS!'
539 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
540         $(CC) -o miniperl $(CLDFLAGS) \
541             `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
542             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
543         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
544 !NO!SUBS!
545                 ;;
546         beos*|next4*)
547                 $spitshell >>Makefile <<'!NO!SUBS!'
548 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
549         $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
550             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
551         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
552 !NO!SUBS!
553                 ;;
554         darwin*)
555                 case "$osvers" in
556                 [1-6].*) ;;
557                 *) case "$ldflags" in
558                     *"-flat_namespace"*) ;;
559                     *) # to allow opmini.o to override stuff in libperl.dylib
560                 $spitshell >>Makefile <<!NO!SUBS!
561 NAMESPACEFLAGS = -force_flat_namespace
562 !NO!SUBS!
563                        ;;
564                     esac
565                     ;;
566                 esac
567                 $spitshell >>Makefile <<'!NO!SUBS!'
568 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
569         -@rm -f miniperl.xok
570         $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \
571             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
572         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
573 !NO!SUBS!
574                 ;;
575         *)
576                 $spitshell >>Makefile <<'!NO!SUBS!'
577 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
578         -@rm -f miniperl.xok
579         $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
580             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
581         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
582 !NO!SUBS!
583                 ;;
584         esac
585
586         $spitshell >>Makefile <<'!NO!SUBS!'
587
588 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
589         -@rm -f miniperl.xok
590         $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
591
592 # Purify/Quantify Perls.
593
594 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
595         $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
596
597 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
598         $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599
600 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
601         $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
602
603 # Valgrind perl (currently Linux only)
604
605 perl.valgrind.config: config.sh
606         @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
607         @$(MAKE) perl.config.dashg
608         @echo "Checking usemymalloc='n' in config.sh..."
609         @grep "^usemymalloc="    config.sh
610         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
611         @echo "And of course you have to have valgrind..."
612         valgrind ./perl -e 1 2>/dev/null || exit 1
613
614 # Third Degree Perl (Tru64 only)
615
616 perl.config.dashg:
617         @echo "Checking optimize='-g' in config.sh..."
618         @grep "^optimize="     config.sh
619         @grep "^optimize='-g'" config.sh >/dev/null || exit 1
620
621 perl.third.config: config.sh
622         @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
623         @$(MAKE) perl.config.dashg
624         @echo "Checking usemymalloc='n' in config.sh..."
625         @grep "^usemymalloc="    config.sh
626         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
627
628 perl.third: /usr/bin/atom perl.third.config perl
629         atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
630         @echo "Now you may run perl.third and then study perl.3log."
631
632 # Pixie Perls (Tru64 and IRIX only)
633
634 perl.pixie.config: config.sh
635         @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
636         @$(MAKE) perl.config.dashg
637
638 perl.pixie.atom: /usr/bin/atom perl
639         atom -tool pixie -L. -all -toolargs="-quiet" perl
640
641 perl.pixie.irix: perl
642         pixie perl
643
644 perl.pixie: /usr/bin/pixie perl.pixie.config perl
645         if test -x /usr/bin/atom; then \
646           $(MAKE) perl.pixie.atom; \
647         else \
648           $(MAKE) perl.pixie.irix; \
649         fi
650         @echo "Now you may run perl.pixie and then run pixie."
651
652 # Gprof Perl
653
654 perl.config.dashpg:
655         @echo "Checking optimize='-pg' in config.sh..."
656         @grep "^optimize="      config.sh
657         @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
658
659 perl.gprof.config: config.sh
660         @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
661         @$(MAKE) perl.config.dashpg
662
663 perl.gprof: /usr/bin/gprof perl.gprof.config
664         @-rm -f perl
665         $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
666         @echo "Now you may run perl.gprof and then run gprof perl.gprof."
667
668 # Gcov Perl
669
670 perl.config.gcov:
671         @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
672         @echo "Checking gccversion in config.sh..."
673         @grep "^gccversion="      config.sh
674         @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
675         @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
676         @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
677         @grep "^ccflags="      config.sh
678         @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
679
680 perl.gcov: perl.config.gcov
681         @-rm -f perl
682         $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
683         @echo "Now you may run perl.gcov and then run gcov some.c."
684
685 # Microperl.  This is just a convenience thing if one happens to
686 # build also the full Perl and therefore the real big Makefile:
687 # usually one should manually explicitly issue the below command.
688
689 .PHONY: microperl
690 microperl:
691         $(MAKE) -f Makefile.micro
692
693 # This version, if specified in Configure, does ONLY those scripts which need
694 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
695 # checks as well as the special code to validate that the script in question
696 # has been invoked correctly.
697
698 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
699         $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
700
701 !NO!SUBS!
702
703 fi
704
705 $spitshell >>Makefile <<'!NO!SUBS!'
706
707 sperl$(OBJ_EXT): perl.c $(h)
708         $(RMS) sperl.c
709         $(LNS) perl.c sperl.c
710         $(CCCMD) -DIAMSUID sperl.c
711         $(RMS) sperl.c
712
713 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
714 #       test -d lib/auto || mkdir lib/auto
715 # We need to autosplit in two steps because VOS can't handle so many args
716 #
717 .PHONY: preplibrary
718 preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
719         @sh ./makedir lib/auto
720         @echo " AutoSplitting perl library"
721         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
722                 autosplit_lib_modules(@ARGV)' lib/*.pm
723         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
724                 autosplit_lib_modules(@ARGV)' lib/*/*.pm
725         $(MAKE) lib/re.pm
726
727 # Take care to avoid modifying lib/Config.pm without reason
728 # (If trying to create a new port and having problems with the configpm script,
729 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
730 lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
731         $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
732         sh mv-if-diff configpm.tmp $@
733
734 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
735         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
736         sh mv-if-diff minimod.tmp $@
737         -touch lib/ExtUtils/Miniperl.pm
738
739 lib/re.pm: ext/re/re.pm
740         cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
741
742 $(plextract):   miniperl$(EXE_EXT) lib/Config.pm x2p/s2p
743         @-rm -f $@
744         $(LDLIBPTH) ./miniperl -Ilib $@.PL
745
746 x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL
747         cd x2p; $(LDLIBPTH) $(MAKE) s2p
748
749 lib/lib.pm:     miniperl$(EXE_EXT) lib/Config.pm
750         @-rm -f $@
751         $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
752
753 extra.pods: miniperl$(EXE_EXT)
754         -@test -f extra.pods && rm -f `cat extra.pods`
755         -@rm -f extra.pods
756         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
757             nx=`echo $$x | sed -e "s/README\.//"`; \
758             cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
759             echo "pod/perl"$$nx".pod" >> extra.pods ; \
760         done
761         -@rm -f pod/perlvms.pod
762         -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
763         -@rm -f pod/perldelta.pod
764         -@test -f pod/perl591delta.pod && cd pod && $(LNS) perl591delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods
765
766 extras.make: perl$(EXE_EXT)
767         -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
768
769 extras.test: perl$(EXE_EXT)
770         -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
771
772 extras.install: perl$(EXE_EXT)
773         -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
774
775 .PHONY: install install-strip install-all install-verbose install-silent \
776         no-install install.perl install.man install.html
777
778 META.yml:       Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
779         $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
780
781 install-strip:
782         $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
783
784 install install-all:
785         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
786
787 install-verbose:
788         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
789
790 install-silent:
791         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
792
793 no-install:
794         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
795
796 # Set this to an empty string to avoid an attempt of rebuild before install
797 INSTALL_DEPENDENCE = all
798
799 install.perl:   $(INSTALL_DEPENDENCE) installperl
800         if [ -n "$(COMPILE)" ]; \
801         then \
802                 cd utils; $(MAKE) compile; \
803                 cd ../x2p; $(MAKE) compile; \
804                 cd ../pod; $(MAKE) compile; \
805         else :; \
806         fi
807         $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
808         $(MAKE) extras.install
809
810 install.man:    all installman
811         $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
812
813 # XXX Experimental. Hardwired values, but useful for testing.
814 # Eventually Configure could ask for some of these values.
815 install.html: all installhtml
816         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
817         $(LDLIBPTH) ./perl installhtml                   \
818       --podroot=. --podpath=. --recurse  \
819       --htmldir=$(privlib)/html     \
820       --htmlroot=$(privlib)/html    \
821       --splithead=pod/perlipc     \
822       --splititem=pod/perlfunc    \
823       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
824       --verbose
825
826
827 # I now supply perly.c with the kits, so the following section is
828 # used only if you force bison to run by saying
829 #       make regen_perly
830 # You normally shouldn't remake perly.[ch].
831
832 .PHONY: regen_perly
833
834 run_byacc:
835         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
836
837 # this outputs perly.act and perly.tab
838 regen_perly:
839         perl regen_perly.pl
840
841 # We don't want to regenerate perly.c and perly.h, but they might
842 # appear out-of-date after a patch is applied or a new distribution is
843 # made.
844 perly.c: perly.y
845         -@sh -c true
846
847 perly.h: perly.y
848         -@sh -c true
849
850 # No compat3.sym here since and including the 5.004_50.
851 # No interp.sym since 5.005_03.
852 SYM  = global.sym globvar.sym perlio.sym pp.sym
853
854 SYMH = perlvars.h intrpvar.h thrdvar.h
855
856 CHMOD_W = chmod +w
857
858 # The following files are generated automatically
859 #       autodoc.pl:     pod/perlapi.pod pod/perlintern.pod
860 #       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
861 #                       ext/B/B/Asmdata.pm
862 #       embed.pl:       proto.h embed.h embedvar.h global.sym
863 #                       perlapi.h perlapi.c 
864 # [* embed.pl needs pp.sym generated by opcode.pl! *]
865 #       keywords.pl:    keywords.h
866 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
867 #       regcomp.pl:     regnodes.h
868 #       warnings.pl:    warnings.h lib/warnings.pm
869 # The correct versions should be already supplied with the perl kit,
870 # in case you don't have perl available.
871 # To force them to be regenerated, run
872 #       perl regen.pl
873 # with your existing copy of perl
874 # (make regen_headers is kept for backwards compatibility)
875
876 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
877                 embed.h embedvar.h global.sym \
878                 pod/perlintern.pod pod/perlapi.pod \
879                 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
880                 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
881                 warnings.h lib/warnings.pm
882
883 .PHONY: regen_headers regen_pods regen_all
884
885 regen regen_headers:    FORCE
886         -perl regen.pl
887
888 regen_pods:     FORCE
889         -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
890
891 regen_all: regen regen_pods
892
893 .PHONY: manisort manicheck
894
895 manisort:       FORCE
896         LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
897                 LC_ALL=C sort -fdo MANIFEST MANIFEST)
898
899 manicheck:      FORCE
900         perl Porting/manicheck
901
902 # Extensions:
903 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
904 # automatically get built.  There should ordinarily be no need to change
905 # any of this part of makefile.
906 #
907 # The dummy dependency is a place holder in case $(dynamic_ext) or
908 # $(static_ext) is empty.
909 #
910 # DynaLoader may be needed for extensions that use Makefile.PL.
911
912 $(DYNALOADER):  miniperl$(EXE_EXT) preplibrary FORCE
913         @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
914
915 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
916         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
917
918 s_dummy $(static_ext):  miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
919         @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
920
921 n_dummy $(nonxs_ext):   miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
922         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
923
924 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
925         realclean _realcleaner clobber _clobber \
926         distclean veryclean _verycleaner
927
928 clean:          _tidy _mopup
929
930 realclean:      _realcleaner _mopup
931         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
932
933 _clobber:
934         -@rm -f Cross/run-* Cross/to-* Cross/from-*
935         rm -f config.sh cppstdin Policy.sh extras.lst
936
937 clobber:        _realcleaner _mopup _clobber
938
939 distclean:      clobber
940
941 # Like distclean but also removes emacs backups and *.orig.
942 veryclean:      _verycleaner _mopup _clobber
943         -@rm -f Obsolete Wanted
944
945 # Do not 'make _mopup' directly.
946 _mopup:
947         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
948         -rmdir .depending
949         -@test -f extra.pods && rm -f `cat extra.pods`
950         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
951         -rm -f perl.exp ext.libs extra.pods opmini.o
952         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
953         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
954         -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
955         -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
956         -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
957         -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
958         -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
959         -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
960
961 # Do not 'make _tidy' directly.
962 _tidy:
963         -cd pod; $(LDLIBPTH) $(MAKE) clean
964         -cd utils; $(LDLIBPTH) $(MAKE) clean
965         -cd x2p; $(LDLIBPTH) $(MAKE) clean
966         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
967         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
968         done
969         rm -f testcompile compilelog
970
971 _cleaner1:
972         -cd os2; rm -f Makefile
973         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
974         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
975         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
976         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
977         $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
978         done
979
980 # Some systems do not support "?", so keep these files separate.
981 _cleaner2:
982         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
983         rm -f core *perl.core t/core t/*perl.core
984         rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
985         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
986         rm -rf $(addedbyconf)
987         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
988         rm -f $(private) lib/Config.pod
989         rm -rf lib/auto
990         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
991         rm -f h2ph.man pstruct
992         rm -rf .config
993         rm -f preload
994         rm -f testcompile compilelog
995         -rmdir lib/B lib/Data lib/Digest
996         rm -rf lib/Encode
997         -rmdir lib/Filter/Util lib/IO/Socket lib/IO
998         -rmdir lib/List lib/MIME lib/Scalar lib/Sys 
999         -rmdir lib/threads lib/XS
1000
1001 _realcleaner:
1002         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1003         @$(LDLIBPTH) $(MAKE) _cleaner2
1004
1005 _verycleaner:
1006         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1007         @$(LDLIBPTH) $(MAKE) _cleaner2
1008         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1009
1010 # The following lint has practically everything turned on.  Unfortunately,
1011 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
1012 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
1013 # for that spot.
1014
1015 .PHONY: lint
1016 lint: $(c)
1017         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
1018
1019 # Need to unset during recursion to go out of loop.
1020 # The README below ensures that the dependency list is never empty and
1021 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1022
1023 MAKEDEPEND = Makefile makedepend
1024
1025 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1026         $(MAKE) depend MAKEDEPEND=
1027
1028 config.h: config_h.SH config.sh
1029         $(SHELL) config_h.SH
1030
1031 # When done, touch perlmain.c so that it doesn't get remade each time.
1032 .PHONY: depend
1033 depend: makedepend
1034         sh ./makedepend MAKE=$(MAKE)
1035         - test -s perlmain.c && touch perlmain.c
1036         cd x2p; $(MAKE) depend
1037
1038 # Cannot postpone this until $firstmakefile is ready ;-)
1039 makedepend: makedepend.SH config.sh
1040         sh ./makedepend.SH
1041
1042 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1043         test_tty test-tty _test_tty test_notty test-notty _test_notty \
1044         utest ucheck test.utf8 check.utf8 test.torture torturetest \
1045         test.third check.third utest.third ucheck.third test_notty.third \
1046         test.deparse test_notty.deparse test_harness test_harness_notty \
1047         test.bytecompile minitest coretest test.taintwarn
1048
1049 # Cannot delegate rebuilding of t/perl to make
1050 # to allow interlaced test and minitest
1051
1052 TESTFILE=TEST
1053
1054 _test_prep:
1055         cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1056
1057 # Architecture-neutral stuff:
1058
1059 test_prep_pre: preplibrary utilities $(nonxs_ext)
1060
1061 test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1062         PERL=./perl $(MAKE) _test_prep
1063
1064 _test_tty:
1065         cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1066
1067 _test_notty:
1068         cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
1069
1070 # The second branch is for testing without a tty or controlling terminal,
1071 # see t/op/stat.t
1072 _test:
1073         if (true </dev/tty) >/dev/null 2>&1; then \
1074           $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty   ; \
1075         else \
1076           $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1077         fi
1078         @echo "Ran tests" > t/rantests
1079
1080 test check: test_prep
1081         PERL=./perl $(MAKE) _test
1082
1083 test_tty: test_prep
1084         PERL=./perl $(MAKE) _test_tty
1085
1086 test_notty: test_prep
1087         PERL=./perl $(MAKE) _test_notty
1088
1089 utest ucheck test.utf8 check.utf8: test_prep
1090         PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1091
1092 coretest: test_prep
1093         PERL=./perl TEST_ARGS=-core $(MAKE) _test
1094
1095 test-prep:      test_prep
1096
1097 test-tty:       test_tty
1098
1099 test-notty:     test_notty
1100
1101 # Torture testing
1102
1103 test.torture torturetest:       test_prep
1104         PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1105
1106 # Targets for valgrind testing:
1107
1108 test_prep.valgrind: test_prep perl.valgrind
1109         PERL=./perl $(MAKE) _test_prep
1110
1111 test.valgrind check.valgrind:   test_prep perl.valgrind.config
1112         PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test
1113
1114 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind
1115         PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1116
1117 test_notty.valgrind: test_prep.valgrind perl.valgrind
1118         PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1119
1120 # Targets for Third Degree testing.
1121
1122 test_prep.third: test_prep perl.third
1123         PERL=./perl.third $(MAKE) _test_prep
1124
1125 test.third check.third: test_prep.third perl.third
1126         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1127
1128 utest.third ucheck.third: test_prep.third perl.third
1129         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1130
1131 test_notty.third: test_prep.third perl.third
1132         PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1133
1134 # Targets for Bytecode/ByteLoader testing.
1135
1136 test.bytecompile:       test_prep
1137         PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test
1138
1139 # Targets for Deparse testing.
1140
1141 test.deparse:   test_prep
1142         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1143
1144 test_notty.deparse:     test_prep
1145         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1146
1147 # Targets to run the test suite with -t
1148
1149 test.taintwarn: test_prep
1150         PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1151
1152 # Can't depend on lib/Config.pm because that might be where miniperl
1153 # is crashing.
1154 minitest: miniperl$(EXE_EXT) lib/re.pm
1155         -@test -f lib/lib.pm && test -f lib/Config.pm || \
1156           $(MAKE) lib/Config.pm lib/lib.pm
1157         @echo " "
1158         @echo "You may see some irrelevant test failures if you have been unable"
1159         @echo "to build lib/Config.pm or lib/lib.pm."
1160         @echo " "
1161         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1162                 && $(LDLIBPTH) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1163
1164 # Test via harness
1165
1166 test_harness: test_prep
1167         PERL=./perl $(MAKE) TESTFILE=harness _test
1168
1169 test_harness_notty: test_prep
1170         PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1171
1172 # Handy way to run perlbug -ok without having to install and run the
1173 # installed perlbug. We don't re-run the tests here - we trust the user.
1174 # Please *don't* use this unless all tests pass.
1175 # If you want to report test failures, use "make nok" instead.
1176
1177 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1178
1179 ok:     utilities
1180         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1181
1182 okfile: utilities
1183         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1184
1185 oknack: utilities
1186         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1187
1188 okfilenack:     utilities
1189         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1190
1191 nok:    utilities
1192         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1193
1194 nokfile:        utilities
1195         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1196
1197 noknack:        utilities
1198         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1199
1200 nokfilenack:    utilities
1201         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1202
1203 .PHONY: clist hlist shlist pllist
1204
1205 clist:  $(c)
1206         echo $(c) | tr ' ' $(TRNL) >.clist
1207
1208 hlist:  $(h)
1209         echo $(h) | tr ' ' $(TRNL) >.hlist
1210
1211 shlist: $(sh)
1212         echo $(sh) | tr ' ' $(TRNL) >.shlist
1213
1214 pllist: $(pl)
1215         echo $(pl) | tr ' ' $(TRNL) >.pllist
1216
1217 Makefile: Makefile.SH ./config.sh
1218         $(SHELL) Makefile.SH
1219
1220 .PHONY: distcheck
1221 distcheck: FORCE
1222         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1223
1224 .PHONY: elc
1225 elc:    emacs/cperl-mode.elc
1226
1227 emacs/cperl-mode.elc: emacs/cperl-mode.el
1228         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1229
1230 .PHONY: etags ctags tags
1231
1232 etags:  TAGS
1233
1234 TAGS: emacs/cperl-mode.elc
1235         sh emacs/ptags
1236
1237 ctags:  tags
1238
1239 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1240 # This may also fail if . is in the head of the path, since perl will
1241 # require -Ilib
1242 tags:   TAGS
1243         perl emacs/e2ctags.pl TAGS > tags
1244
1245 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1246 # If this runs make out of memory, delete /usr/include lines.
1247 !NO!SUBS!
1248
1249 $eunicefix Makefile
1250 case `pwd` in
1251 *SH)
1252     $rm -f ../Makefile
1253     $ln Makefile ../Makefile
1254     ;;
1255 esac
1256 $rm -f $firstmakefile
1257
1258 # Now do any special processing required before building.
1259
1260 case "$ebcdic" in
1261 define)
1262     xxx=''
1263     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1264 case "$osname" in
1265 os390|posix-bc)
1266     if cd x2p
1267     then
1268         rm -f y.tab.c y.tab.h
1269         case "$osname" in
1270         posix-bc)
1271            # we are using two different yaccs in BS2000 Posix!
1272            byacc a2p.y >/dev/null 2>&1
1273            ;;
1274         *) # e.g. os390
1275            yacc  a2p.y >/dev/null 2>&1
1276            ;;
1277         esac
1278         if cmp -s y.tab.c a2p.c
1279         then
1280             rm -f y.tab.c
1281         else
1282             echo "a2p.y -> a2p.c" >&2
1283             mv -f y.tab.c a2p.c
1284             chmod u+w a2p.c
1285             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1286                 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1287                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1288             xxx="$xxx a2p.c"
1289         fi
1290         # In case somebody yacc -d:ed the a2p.y.
1291         if test -f y.tab.h
1292         then
1293             if cmp -s y.tab.h a2p.h
1294             then
1295                 rm -f y.tab.h
1296             else
1297                 echo "a2p.h -> a2p.h" >&2
1298                 mv -f y.tab.h a2p.h
1299                 xxx="$xxx a2p.h"
1300             fi
1301         fi
1302         cd ..
1303     fi
1304     ;;
1305 vmesa)
1306     # Do nothing in VM/ESA.
1307     ;;
1308 *)
1309     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1310     ;;
1311 esac
1312     case "$xxx" in
1313     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1314     esac
1315     ;;
1316 esac
1317