This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
devel/devtools.pl: Print out perls in this run if debug
[perl5.git] / Makefile.SH
1 #!/bin/sh
2
3 # quote() - Creates a shell literal
4 # Usage:  echo "...` quote "..." `..."
5 quote() {
6         case "$1" in
7         '') echo "''" ;;
8         *)  echo "$1" | sed 's/\([^a-zA-Z0-9.:_/-]\)/\\\1/g' ;;
9         esac
10 }
11
12 case $PERL_CONFIG_SH in
13 '')
14         if test -f config.sh
15                 then TOP=.
16         else
17                 echo "Can't find config.sh."; exit 1
18         fi
19         . $TOP/config.sh
20         ;;
21 esac
22
23 case "$osname" in
24 amigaos)
25         devtty=CONSOLE:
26         ;;
27 *)
28         devtty=/dev/tty
29         ;;
30 esac
31
32 Makefile=Makefile
33
34 : This forces SH files to create target in same directory as SH file.
35 : This is so that make depend always knows where to find SH derivatives.
36 case "$0" in
37 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
38 esac
39
40 pwd="`pwd`"
41 linklibperl='$(LIBPERL)'
42 linklibperl_nonshr=''
43 shrpldflags='$(LDDLFLAGS)'
44 ldlibpth=''
45 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
46 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
47 case "$useshrplib" in
48 true)
49         # Prefix all runs of 'miniperl' and 'perl' with
50         # $ldlibpth so that ./perl finds *this* shared libperl.
51         case "$LD_LIBRARY_PATH" in
52         '')  ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;;
53         *)   ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;;
54         esac
55
56         pldlflags="$cccdlflags"
57         static_ldflags=''
58         case "${osname}${osvers}" in
59         next4*)
60                 ld=libtool
61                 lddlflags="-dynamic -undefined warning -framework System \
62                 -compatibility_version 1 -current_version $patchlevel \
63                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
64                 ;;
65         darwin*)
66                 shrpldflags="${ldflags} -dynamiclib \
67                             -compatibility_version \
68                                 ${api_revision}.${api_version}.${api_subversion} \
69                              -current_version \
70                                 ${revision}.${patchlevel}.${subversion}"
71                 case "$osvers" in
72                 1[5-9]*|[2-9]*)
73                         shrpldflags="$shrpldflags -install_name `pwd`/\$@ -Xlinker -headerpad_max_install_names"
74                         exeldflags="-Xlinker -headerpad_max_install_names"
75                         ;;
76                 *)
77                         shrpldflags="$shrpldflags -install_name \$(shrpdir)/\$@"
78                         ;;
79                 esac
80                 ;;
81         cygwin*)
82                 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
83                 linklibperl="-L. -lperl"
84                 ;;
85         sunos*)
86                 linklibperl="-lperl"
87                 ;;
88         netbsd*|freebsd[234]*|openbsd*|dragonfly*|bitrig*)
89                 linklibperl="-L. -lperl"
90                 ;;
91         interix*)
92                 linklibperl="-L. -lperl"
93                 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
94                 ;;
95         aix*)
96                 case "$cc" in
97                 gcc*)
98                         shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
99                         case "$osvers" in
100                         3*)     shrpldflags="$shrpldflags -e _nostart"
101                                 ;;
102                         *)      shrpldflags="$shrpldflags -Wl,-bnoentry"
103                                 ;;
104                         esac
105                         shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
106                         linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
107                         linklibperl_nonshr='-lperl_nonshr'
108                         ;;
109                 *)
110                         shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
111                         case "$osvers" in
112                         3*)     shrpldflags="$shrpldflags -e _nostart"
113                                 ;;
114                         *)      shrpldflags="$shrpldflags -b noentry"
115                                 ;;
116                         esac
117                         shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
118                         linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
119                         linklibperl_nonshr='-lperl_nonshr'
120                         ;;
121                 esac
122                 ;;
123         hpux*)
124                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
125                 ;;
126         os390*)
127             shrpldflags='-W l,XPLINK,dll'
128             linklibperl='libperl.x'
129             DPERL_EXTERNAL_GLOB=''
130             ;;
131         esac
132         case "$ldlibpthname" in
133         '') ;;
134         *)
135             case "$osname" in
136             os2)
137                 ldlibpth=''
138                 ;;
139             *)
140                 eval "ldlibpthval=\"\$$ldlibpthname\""
141
142                 case "$ldlibpthval" in
143                 '')  ldlibpth="$ldlibpthname=` quote "$pwd" `" ;;
144                 *)   ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;;
145                 esac
146
147                 ;;
148             esac
149
150             ;;
151         esac
152
153         case "$osname" in
154         linux)
155             # If there is a pre-existing $libperl from a previous
156             # installation, Linux needs to use LD_PRELOAD to
157             # override the LD_LIBRARY_PATH setting.  See the
158             # INSTALL file, under "Building a shared perl library".
159             # If there is no pre-existing $libperl, we don't need
160             # to do anything further.
161             if test -f $archlib/CORE/$libperl; then
162                 rm -f preload
163                 cat <<'EOT' > preload
164 #! /bin/sh
165 lib=$1
166 shift
167 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
168 exec "$@"
169 EOT
170                 chmod 755 preload
171                 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
172             fi
173             ;;
174         os390)  test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
175                 ;;
176         esac
177
178         ;;
179
180 *)      pldlflags=''
181         static_ldflags='CCCDLFLAGS='
182         ;;
183 esac
184
185 : is Cwd static or dynamic
186 static_cwd='define'
187 list_util_dep='$(PERL_EXE)'
188 for f in $dynamic_ext; do
189    case $f in
190        Cwd) static_cwd='undef' ;;
191        List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext ;;
192    esac
193 done
194
195 : Prepare dependency lists for Makefile.  Non-Unix systems likely will also
196 : require changes in make_ext.pl
197 dynamic_list=' '
198 dynamic_ext_re="lib/auto/re/re.$dlext"
199 extra_dep='
200 cpan/Pod-Simple/pm_to_blib: dist/if/pm_to_blib
201 ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
202 cpan/IO-Compress/pm_to_blib: dist/lib/pm_to_blib
203 '
204 for f in $dynamic_ext; do
205     : the dependency named here will never exist
206       base=`echo "$f" | sed 's/.*\///'`
207     this_target="lib/auto/$f/$base.$dlext"
208     dynamic_list="$dynamic_list $this_target"
209
210     : Parallel makes reveal that we have some interdependencies
211     case $f in
212         Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
213 $this_target: $list_util_dep" ;;
214         Unicode/Normalize) extra_dep="$extra_dep
215 $this_target: uni.data" ;;
216     esac
217 done
218
219 static_list=' '
220 for f in $static_ext; do
221         base=`echo "$f" | sed 's/.*\///'`
222         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
223     : Parallel makes reveal that we have some interdependencies
224     this_target="lib/auto/$f/$base\$(LIB_EXT)"
225     case $f in
226         Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
227 $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
228         Unicode/Normalize) extra_dep="$extra_dep
229 $this_target: uni.data" ;;
230     esac
231 done
232
233 nonxs_list=' '
234 for f in $nonxs_ext; do
235     p=`echo "$f" | tr / -`
236     for d in ext dist cpan; do
237         if test -d $d/$p; then
238             nonxs_list="$nonxs_list $d/$p/pm_to_blib"
239         fi
240     done
241 done
242
243 dtrace_h=''
244
245 # three object files generated by 'dtrace -G' when dtrace is enabled
246 dtrace_perllib_o=''
247 dtrace_mini_o=''
248 dtrace_main_o=''
249
250 case "$usedtrace" in
251 define|true)
252         dtrace_h='perldtrace.h'
253         case "$dtraceobject" in
254         define)
255                 dtrace_perllib_o='dtrace_perllib$(OBJ_EXT)'
256                 dtrace_mini_o='dtrace_mini$(OBJ_EXT)'
257                 dtrace_main_o='dtrace_main$(OBJ_EXT)'
258                 ;;
259         esac
260         ;;
261 esac
262
263 echo "Extracting $Makefile (with variable substitutions)"
264 $spitshell >$Makefile <<!GROK!THIS!
265 # $Makefile
266 # This file is derived from Makefile.SH.  Any changes made here will
267 # be lost the next time you run Configure.
268 #  Makefile is used to generate $firstmakefile.  The only difference
269 #  is that $firstmakefile has the dependencies filled in at the end.
270
271 CC = $cc
272 LD = $ld
273
274 LDFLAGS = $ldflags
275 CLDFLAGS = $ldflags
276
277 mallocsrc = $mallocsrc
278 mallocobj = $mallocobj
279 LNS = $lns
280 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
281 CPS = $cp
282 RMS = rm -f
283 ranlib = $ranlib
284 ECHO = $echo
285
286 # The following are mentioned only to make metaconfig include the
287 # appropriate questions in Configure.  If you want to change these,
288 # edit config.sh instead, or specify --man1dir=/wherever on
289 # installman commandline.
290 bin = $installbin
291 scriptdir = $scriptdir
292 shrpdir = $archlibexp/CORE
293 privlib = $installprivlib
294 man1dir = $man1dir
295 man1ext = $man1ext
296 man3dir = $man3dir
297 man3ext = $man3ext
298
299 # The following are used to build and install shared libraries for
300 # dynamic loading.
301 LDDLFLAGS = $lddlflags
302 SHRPLDFLAGS = $shrpldflags
303 CCDLFLAGS = $ccdlflags
304 DLSUFFIX = .$dlext
305 PLDLFLAGS = $pldlflags
306 LIBPERL = $libperl
307 LLIBPERL= $linklibperl
308 LLIBPERL_NONSHR= $linklibperl_nonshr
309 SHRPENV = $shrpenv
310
311 # Static targets are ordinarily built without CCCDLFLAGS.  However,
312 # if building a shared libperl.so that might later be linked into
313 # another application, then it might be appropriate to also build static
314 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
315 # for GNU cc).
316 STATIC_LDFLAGS = $static_ldflags
317
318 # The following is used to include the current directory in
319 # the dynamic loader path you are building a shared libperl.
320 LDLIBPTH = $ldlibpth
321
322 # Sometimes running an executable is an adventure.
323 RUN = 
324
325 # When cross-compiling we want to use a (mini)perl built for the host, not the target
326 HOST_PERL = $hostperl
327 HOST_GENERATE = $hostgenerate
328 SYSTEM_PERL = $perl
329
330 # These variables may need to be manually set for non-Unix systems.
331 AR = $full_ar
332 HOST_EXE_EXT = $_exe
333 EXE_EXT = $_exe
334 LIB_EXT = $_a
335 OBJ_EXT = $_o
336 PATH_SEP = $p_
337
338 # Macros to invoke a copy of miniperl during the build.  Targets which
339 # are built using these macros should depend on \$(MINIPERL_EXE)
340 MINIPERL_EXE = miniperl\$(EXE_EXT)
341 MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
342
343 # Macros to invoke sort the MANIFEST during build
344 MANIFEST_SRT = MANIFEST.srt
345
346 !GROK!THIS!
347
348 case "$useshrplib$osname" in
349 truedarwin)
350         $spitshell >>$Makefile <<!GROK!THIS!
351 PERL_EXE_LDFLAGS=$exeldflags
352 !GROK!THIS!
353         ;;
354 esac
355
356 case "$usecrosscompile$perl" in
357 define?*)
358         $spitshell >>$Makefile <<!GROK!THIS!
359 # Macros to invoke a copy of our fully operational perl during the build.
360 PERL_EXE = perl\$(EXE_EXT)
361 RUN_PERL = \$(LDLIBPTH) \$(RUN) $perl\$(EXE_EXT)
362 !GROK!THIS!
363         ;;
364 *)
365         $spitshell >>$Makefile <<!GROK!THIS!
366 # Macros to invoke a copy of our fully operational perl during the build.
367 PERL_EXE = perl\$(EXE_EXT)
368 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib -I.
369 !GROK!THIS!
370         ;;
371 esac
372
373 $spitshell >>$Makefile <<!GROK!THIS!
374 # Macros to run our tests
375 RUN_TESTS = \$(LDLIBPTH) ./runtests
376
377 dynamic_ext = $dynamic_list
378 dynamic_ext_re = $dynamic_ext_re
379 static_ext = $static_list
380 nonxs_ext = $nonxs_list
381 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
382 DYNALOADER = DynaLoader\$(OBJ_EXT)
383
384 libs = $perllibs $cryptlib
385
386 public = \$(PERL_EXE) utilities
387
388 shellflags = $shellflags
389
390 # The /dev/tty or the moral equivalent.
391 devtty = $devtty
392
393 # This is set to  MAKE=$make if your $make command doesn't
394 # do it for you.
395 $make_set_make
396
397 # Mention $gmake here so it gets probed for by Configure.
398
399 !GROK!THIS!
400
401 case "${osname}" in
402 linux*|darwin)
403 $spitshell >>$Makefile <<!GROK!THIS!
404 # If you're going to use valgrind and it can't be invoked as plain valgrind
405 # then you'll need to change this, or override it on the make command line.
406 VALGRIND ?= valgrind
407 VG_TEST  ?= ./perl -e 1 2>/dev/null
408
409 !GROK!THIS!
410         ;;
411 esac
412
413 case "$dtracexnolibs" in
414 define) xnolibs=-xnolibs ;;
415 *) xnolibs= ;;
416 esac
417
418 $spitshell >>$Makefile <<!GROK!THIS!
419 DTRACE = $dtrace $xnolibs
420 DTRACE_H = $dtrace_h
421
422 DTRACE_PERLLIB_O = $dtrace_perllib_o # "dtrace -G" output for perllib_objs
423 DTRACE_MINI_O    = $dtrace_mini_o    # "dtrace -G" output for common and mini
424 DTRACE_MAIN_O    = $dtrace_main_o    # "dtrace -G" output for perlmain.o
425
426 FIRSTMAKEFILE = $firstmakefile
427
428 # Any special object files needed by this architecture, e.g. os2/os2.obj
429 ARCHOBJS = $archobjs
430
431 .SUFFIXES: .c \$(OBJ_EXT) .i .s
432
433 # grrr
434 SHELL = $sh
435
436 # how to tr(anslate) newlines
437 TRNL = '$trnl'
438
439 OPTIMIZE = $optimize
440
441 EXTRAS = $extras
442
443 INSTALLPREFIXEXP = $prefix
444
445 !GROK!THIS!
446 # not used by Makefile but by installperl;
447 # mentioned here so that metaconfig picks these up
448 # $installusrbinperl
449 # $versiononly
450
451 case "${osname}:${osvers}" in
452 darwin:*)
453 $spitshell >>$Makefile <<EOF
454
455 # Your locales are broken (osname $osname, osvers $osvers)
456 # and to avoid the numerous
457 # perl: warning: Setting locale failed.
458 # warnings during the build process we reset the locale variables.
459
460 LC_ALL=C
461 LANG=C
462 LANGUAGE=C
463 EOF
464         ;;
465 esac
466
467 ## In the following dollars and backticks do not need the extra backslash.
468 $spitshell >>$Makefile <<'!NO!SUBS!'
469
470 CCCMD    = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
471
472 CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
473
474 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
475 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
476
477 CONFIGPOD = lib/Config.pod
478
479 CONFIGH = config.h
480 !NO!SUBS!
481
482 SH_to_target() {
483     echo $@ | sed -e s/\\\.SH//g -e s/_/./g
484 }
485
486 SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH'
487 shextract=`SH_to_target $SH`
488
489 ## In the following dollars and backticks do not need the extra backslash.
490 $spitshell >>$Makefile <<!GROK!THIS!
491
492 private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
493
494 # Files to be built with variable substitution before miniperl
495 # is available.
496 sh = $SH
497
498 shextract = $shextract
499 !GROK!THIS!
500
501 ## In the following dollars and backticks do not need the extra backslash.
502 $spitshell >>$Makefile <<'!NO!SUBS!'
503
504 addedbyconf = UU $(shextract)
505
506 # Unicode data files generated by mktables
507 unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
508         lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
509         lib/unicore/UCD.pl lib/unicore/Name.pm \
510         lib/unicore/Heavy.pl lib/unicore/mktables.lst
511
512 # Directories of Unicode data files generated by mktables
513 unidatadirs = lib/unicore/To lib/unicore/lib
514
515 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
516 h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
517 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
518 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
519 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
520 h6 = charclass_invlists.h
521 h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
522
523 c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro_core.c perl.c
524 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
525 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
526 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c dquote.c time64.c
527 c5 = $(mallocsrc)
528
529 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
530
531 obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) mro_core$(OBJ_EXT) keywords$(OBJ_EXT)
532 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)
533 obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) mathoms$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT) caretx$(OBJ_EXT) dquote$(OBJ_EXT) time64$(OBJ_EXT)
534
535 # split the objects into 3 exclusive sets: those used by both miniperl and
536 # perl, and those used by just one or the other. Doesn't include the
537 # actual perl(mini)main.o, nor any dtrace objects.
538
539 common_objs    = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
540 mini_only_objs = opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
541 main_only_objs = op$(OBJ_EXT)     perl$(OBJ_EXT)
542
543 miniperl_objs_nodt = $(mini_only_objs) $(common_objs) miniperlmain$(OBJ_EXT)
544 perllib_objs_nodt  = $(main_only_objs) $(common_objs)
545
546 !NO!SUBS!
547
548 # dtrace with -G modifies the source object files, which can cause
549 # dependency issues, and can cause the dtrace -G to fail on FreeBSD
550 # so separate the objects generated by $(CC) from those used to link
551 # the executable when dtrace -G is involved.
552 #
553 # $(FOO:op%os=np%ns) isn't generally portable but is portable to
554 # the makes on darwin, Solaris, FreeBSD and Linux, which is where we
555 # use dtrace
556
557 case "$usedtrace:$dtraceobject" in
558 define:define)
559     $spitshell >>$Makefile <<'!NO!SUBS!'
560
561 miniperl_dtrace_objs = $(miniperl_objs_nodt:%=mpdtrace/%)
562 perllib_dtrace_objs = $(perllib_objs_nodt:%=libpdtrace/%)
563 perlmain_dtrace_objs = maindtrace/perlmain$(OBJ_EXT)
564
565 miniperl_objs = $(miniperl_dtrace_objs) $(DTRACE_MINI_O)
566 perllib_objs  = $(perllib_dtrace_objs) $(DTRACE_PERLLIB_O)
567 perlmain_objs = $(perlmain_dtrace_objs) $(DTRACE_MAIN_O)
568
569 miniperl_dep = $(DTRACE_MINI_O)
570 perllib_dep = $(DTRACE_PERLLIB_O)
571 perlmain_dep = $(DTRACE_MAIN_O)
572
573 !NO!SUBS!
574     ;;
575 *)
576     $spitshell >>$Makefile <<'!NO!SUBS!'
577
578 miniperl_objs = $(miniperl_objs_nodt) $(DTRACE_MINI_O)
579 perllib_objs  = $(perllib_objs_nodt) $(DTRACE_PERLLIB_O)
580 perlmain_objs = perlmain$(OBJ_EXT) $(DTRACE_MAIN_O)
581
582 miniperl_dep = $(miniperl_objs)
583 perllib_dep = $(perllib_objs)
584 perlmain_dep = $(perlmain_objs)
585
586 !NO!SUBS!
587     ;;
588 esac
589
590 $spitshell >>$Makefile <<'!NO!SUBS!'
591
592 perltoc_pod_prereqs = extra.pods pod/perl5315delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
593 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
594 generated_headers = uudmap.h bitcount.h mg_data.h
595
596 lintflags = \
597     -b \
598     -n \
599     -p \
600     -Ncheck=%all \
601     -Nlevel=4 \
602     -errchk=parentheses \
603     -errhdr=%all \
604     -errfmt=src \
605     -errtags \
606     -erroff=E_ASSIGN_NARROW_CONV \
607     -erroff=E_BAD_PTR_CAST \
608     -erroff=E_BAD_PTR_CAST_ALIGN \
609     -erroff=E_BAD_PTR_INT_COMBINATION \
610     -erroff=E_BAD_SIGN_EXTEND \
611     -erroff=E_BLOCK_DECL_UNUSED \
612     -erroff=E_CASE_FALLTHRU \
613     -erroff=E_CONST_EXPR \
614     -erroff=E_CONSTANT_CONDITION \
615     -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
616     -erroff=E_EQUALITY_NOT_ASSIGNMENT \
617     -erroff=E_EXPR_NULL_EFFECT \
618     -erroff=E_FALSE_LOGICAL_EXPR \
619     -erroff=E_INCL_NUSD \
620     -erroff=E_LOOP_EMPTY \
621     -erroff=E_MAIN_PARAM \
622     -erroff=E_POINTER_TO_OBJECT \
623     -erroff=E_PTRDIFF_OVERFLOW \
624     -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
625     -erroff=E_STATIC_UNUSED \
626     -erroff=E_TRUE_LOGICAL_EXPR
627
628 .c$(OBJ_EXT): 
629         @echo `$(CCCMD)` $(PLDLFLAGS) $*.c
630         @`$(CCCMD)` $(PLDLFLAGS) $*.c
631
632 .c.i:   perl.h config.h
633         @echo `$(CCCMDSRC)` -E $*.c \> $*.i
634         @`$(CCCMDSRC)` -E $*.c > $*.i
635
636 .c.s:   perl.h config.h
637         @echo `$(CCCMDSRC)` -S $*.c
638         @`$(CCCMDSRC)` -S $*.c
639
640 all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make $(MANIFEST_SRT) common_build
641         @echo " ";
642         @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
643
644 $(MANIFEST_SRT):        MANIFEST $(PERL_EXE)
645         @$(RUN_PERL) Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
646             $(RUN_PERL) Porting/manisort -q -o MANIFEST; sh -c true)
647         @touch $(MANIFEST_SRT)
648
649 .PHONY: all utilities
650
651 # Both git_version.h and lib/Config_git.pl are built
652 # by make_patchnum.pl.
653 git_version.h: lib/Config_git.pl
654
655 lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
656         $(MINIPERL) make_patchnum.pl
657
658 # make sure that we recompile perl.c if the git version changes
659 perl$(OBJ_EXT): git_version.h
660
661 !NO!SUBS!
662
663 # Making utilities requires Cwd.  If we have dynamic
664 # loading, we only need miniperl and Cwd.$dlext.  If we have static
665 # loading, we need to build perl first.
666 case "$usedl$static_cwd" in
667 defineundef)
668     util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
669     ;;
670 definedefine)
671     util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
672     ;;
673 *)  util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
674     ;;
675 esac
676
677 $spitshell >>$Makefile <<!GROK!THIS!
678 utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
679         \$(MINIPERL) utils/Makefile.PL
680
681 utilities:      utils/Makefile $util_deps
682         @echo " "; echo "       Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
683
684 !GROK!THIS!
685
686 $spitshell >>$Makefile <<'!NO!SUBS!'
687
688 # This is now done by installman only if you actually want the man pages.
689 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
690
691 # Phony target to force checking subdirectories.
692 # Apparently some makes require an action for the FORCE target.
693 .PHONY: FORCE
694 FORCE:
695         @sh -c true
696 !NO!SUBS!
697
698 for file in op perl; do
699     if $issymlink $file.c; then
700         $spitshell >>$Makefile <<!GROK!THIS!
701
702 # We do a copy of the $file.c instead of a symlink because gcc gets huffy
703 # if we have a symlink forest to another disk (it complains about too many
704 # levels of symbolic links, even if we have only two)
705
706 ${file}mini.c: $file.c
707         \$(RMS) ${file}mini.c
708         \$(CPS) ${file}.c ${file}mini.c
709 !GROK!THIS!
710     else
711         $spitshell >>$Makefile <<!GROK!THIS!
712
713 ${file}mini.c: $file.c
714         \$(RMS) ${file}mini.c
715         \$(LNS) ${file}.c ${file}mini.c
716 !GROK!THIS!
717     fi
718
719     $spitshell >>$Makefile <<!GROK!THIS!
720
721 ${file}mini\$(OBJ_EXT): ${file}mini.c
722         echo @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
723         @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
724 !GROK!THIS!
725 done
726
727 $spitshell >>$Makefile <<'!NO!SUBS!'
728
729 globals$(OBJ_EXT): $(generated_headers)
730
731 uudmap.h mg_data.h: bitcount.h
732
733 generate_uudmap$(OBJ_EXT): mg_raw.h
734
735 !NO!SUBS!
736
737 # If hostgerenate isn't defined, then we have to build
738 # generate_uudmap and run it. This can potentially mean running
739 # it on the target system if we're cross-compiling.
740 # If it is defined, then we just run it locally.
741 case "$hostgenerate" in
742 ''|'undef')
743 $spitshell >>$Makefile <<!GROK!THIS!
744 bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
745         $run ./generate_uudmap\$(HOST_EXE_EXT) \$(generated_headers)
746         -@for f in \$(generated_headers); do \\
747             $from \$\$f; \\
748         done
749
750 !GROK!THIS!
751
752 $spitshell >>$Makefile <<'!NO!SUBS!'
753 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
754         $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
755
756 !NO!SUBS!
757 ;;
758 *)
759 $spitshell >>$Makefile <<'!NO!SUBS!'
760 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
761         ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
762
763 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
764         -@rm generate_uudmap$(HOST_EXE_EXT)
765         $(LNS) $(HOST_GENERATE) generate_uudmap$(HOST_EXE_EXT)
766
767 !NO!SUBS!
768 ;;
769 esac
770
771 case "$osname" in
772 amigaos*)
773 $spitshell >>$Makefile <<'!NO!SUBS!'
774 perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
775         $(MINIPERL) -MExtUtils::Miniperl -e 'writemain(\\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
776
777 # The file ext.libs is a list of libraries that must be linked in
778 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
779 # static extension Makefile's add to it.
780 ext.libs: $(static_ext)
781         -@test -f ext.libs || touch ext.libs
782
783 !NO!SUBS!
784 ;;
785 *)
786 $spitshell >>$Makefile <<'!NO!SUBS!'
787 perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
788         $(MINIPERL) -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
789
790 # The file ext.libs is a list of libraries that must be linked in
791 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
792 # static extension Makefile's add to it.
793 ext.libs: $(static_ext)
794         -@test -f ext.libs || touch ext.libs
795
796 !NO!SUBS!
797 ;;
798 esac
799
800 # How to build libperl.  This is still rather convoluted.
801 # Load up custom Makefile.SH fragment for shared loading and executables:
802 case "$osname" in
803 *)
804         Makefile_s="$osname/Makefile.SHs"
805         ;;
806 esac
807
808 case "$osname" in
809 aix)
810         $spitshell >>$Makefile <<!GROK!THIS!
811 LIBS                    = $perllibs
812 # In AIX we need to change this for building Perl itself from
813 # its earlier definition (which is for building external
814 # extensions *after* Perl has been built and installed)
815 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
816
817 !GROK!THIS!
818         case "$useshrplib" in
819         define|true|[yY]*)
820                 $spitshell >>$Makefile <<'!NO!SUBS!'
821
822 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
823 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
824
825 $(LIBPERL_NONSHR): $(perllib_objs)
826         $(RMS) $(LIBPERL_NONSHR)
827         $(AR) rc $(LIBPERL_NONSHR) $(perllib_objs)
828
829 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)  perlmini$(OBJ_EXT)
830         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
831             opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
832
833 MINIPERLEXP             = $(MINIPERL_NONSHR)
834
835 LIBPERLEXPORT           = perl.exp
836
837 !NO!SUBS!
838                 
839                 ;;
840         *)      
841                 $spitshell >>$Makefile <<'!NO!SUBS!'
842 MINIPERLEXP             = $(MINIPERL_EXE)
843
844 PERLEXPORT              = perl.exp
845
846 !NO!SUBS!
847         ;;
848         esac
849         $spitshell >>$Makefile <<'!NO!SUBS!'
850 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
851         $(MINIPERL) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
852
853 !NO!SUBS!
854         ;;
855 os2)
856         $spitshell >>$Makefile <<'!NO!SUBS!'
857 MINIPERLEXP             = miniperl
858
859 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
860         $(MINIPERL) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
861
862 !NO!SUBS!
863         ;;
864 cygwin)
865         $spitshell >>$Makefile <<'!NO!SUBS!'
866 cygwin.c: cygwin/cygwin.c
867         $(LNS) cygwin/cygwin.c
868
869 LIBPERL_NONSHR          = libperl$(LIB_EXT)
870
871 $(LIBPERL_NONSHR): $(perllib_objs)
872         $(RMS) $(LIBPERL_NONSHR)
873         $(AR) rc $(LIBPERL_NONSHR) $(perllib_objs)
874
875 !NO!SUBS!
876         ;;
877 esac
878
879 if test -s $Makefile_s ; then
880         . $Makefile_s
881         $spitshell >>$Makefile <<!GROK!THIS!
882
883 Makefile: $Makefile_s
884 !GROK!THIS!
885 else
886         case "$dtrace_h" in
887         ?*)
888                 $spitshell >>$Makefile <<'!NO!SUBS!'
889 # dtrace dicards const qualifiers from arguments, put them back
890 $(DTRACE_H): perldtrace.d
891         $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
892         sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
893         $(RMS) $(DTRACE_H).in
894
895 mydtrace.h: $(DTRACE_H)
896
897 !NO!SUBS!
898                 ;;
899         esac
900         case "$dtraceobject" in
901         define)
902                 $spitshell >>$Makefile <<'!NO!SUBS!'
903 $(DTRACE_MINI_O): perldtrace.d $(miniperl_objs_nodt)
904         -rm -rf mpdtrace
905         mkdir mpdtrace
906         cp $(miniperl_objs_nodt) mpdtrace/
907         $(DTRACE) -G -s perldtrace.d -o $(DTRACE_MINI_O) $(miniperl_dtrace_objs)
908
909 $(DTRACE_PERLLIB_O): perldtrace.d $(perllib_objs_nodt)
910         -rm -rf libpdtrace
911         mkdir libpdtrace
912         cp $(perllib_objs_nodt) libpdtrace/
913         $(DTRACE) -G -s perldtrace.d -o $(DTRACE_PERLLIB_O) $(perllib_dtrace_objs)
914
915 $(DTRACE_MAIN_O): perldtrace.d perlmain$(OBJ_EXT)
916         -rm -rf maindtrace
917         mkdir maindtrace
918         cp perlmain$(OBJ_EXT) maindtrace/
919         $(DTRACE) -G -s perldtrace.d -o $(DTRACE_MAIN_O) $(perlmain_dtrace_objs) ||           \
920           ( $(ECHO) "No probes in perlmain$(OBJ_EXT), generating a dummy $(DTRACE_MAIN_O)" && \
921             $(ECHO) >dtrace_main.c &&                                                         \
922             `$(CCCMD)` $(PLDLFLAGS) dtrace_main.c &&                                          \
923              rm -f dtrace_main.c )
924
925 !NO!SUBS!
926                 ;;
927     esac
928         $spitshell >>$Makefile <<'!NO!SUBS!'
929 $(LIBPERL): $& $(perllib_dep) $(DYNALOADER) $(LIBPERLEXPORT)
930 !NO!SUBS!
931         case "$useshrplib" in
932         true)
933                 $spitshell >>$Makefile <<'!NO!SUBS!'
934         rm -f $@
935         $(LD) -o $@ $(SHRPLDFLAGS) $(perllib_objs) $(DYNALOADER) $(libs)
936 !NO!SUBS!
937                 case "$osname" in
938                 aix)
939                         $spitshell >>$Makefile <<'!NO!SUBS!'
940         rm -f libperl$(OBJ_EXT)
941         mv $@ libperl$(OBJ_EXT)
942         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
943 !NO!SUBS!
944                         ;;
945                 esac
946                 ;;
947         *)
948                 $spitshell >>$Makefile <<'!NO!SUBS!'
949         rm -f $(LIBPERL)
950         $(AR) rc $(LIBPERL) $(perllib_objs) $(DYNALOADER)
951         @$(ranlib) $(LIBPERL)
952 !NO!SUBS!
953                 ;;
954         esac
955         $spitshell >>$Makefile <<'!NO!SUBS!'
956
957 # How to build executables.
958
959 # The $& notation tells Sequent machines that it can do a parallel make,
960 # and is harmless otherwise.
961 # The miniperl -w -MExporter line is a basic cheap test to catch errors
962 # before make goes on to run preplibrary and then MakeMaker on extensions.
963 # This is very handy because later errors are often caused by miniperl
964 # build problems but that's not obvious to the novice.
965 # The Module used here must not depend on Config or any extensions.
966
967 # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
968 # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
969 # miniperl to exist first permits us to
970 # a) have one rule generate both miniperl and lib/buildcustomize.pl
971 #    (so that lib/buildcustomize.pl is always available. This simplifies things)
972 # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
973
974 $(MINIPERL_EXE): lib/buildcustomize.pl
975
976 !NO!SUBS!
977
978         case "${osname}${osvers}" in
979         amigaos*)
980                 $spitshell >>$Makefile <<'!NO!SUBS!'
981 lib/buildcustomize.pl: $& $(miniperl_objs) write_buildcustomize.pl
982         -@rm -f miniperl.xok
983         $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
984             $(miniperl_objs) $(libs)
985 #       $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
986         $(MINIPERL) -f write_buildcustomize.pl
987 !NO!SUBS!
988                 ;;
989         aix*)
990                 $spitshell >>$Makefile <<'!NO!SUBS!'
991 lib/buildcustomize.pl: $& $(miniperl_objs)
992         $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(miniperl_objs) $(libs)
993         $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
994         $(MINIPERL) -f write_buildcustomize.pl
995 !NO!SUBS!
996                 ;;
997         next4*)
998                 $spitshell >>$Makefile <<'!NO!SUBS!'
999 lib/buildcustomize.pl: $& $(miniperl_objs) write    ldcustomize.pl
1000         $(CC) -o $(MINIPERL_EXE) $(miniperl_objs    libs)
1001         $(LDLIBPTH) ./miniperl$(HOST    _EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
1002         $(MINIPERL) -f write_buildcustomize.pl    
1003 !NO!SUBS!
1004                 ;;
1005         darwin*)
1006                 case "$osvers" in
1007                 [1-6].*) ;;
1008                 *) case "$ldflags" in
1009                     *"-flat_namespace"*) ;;
1010                     *) # to allow opmini.o to override stuff in libperl.dylib
1011                 $spitshell >>$Makefile <<!NO!SUBS!
1012 NAMESPACEFLAGS = -force_flat_namespace
1013 !NO!SUBS!
1014                        ;;
1015                     esac
1016                     ;;
1017                 esac
1018                 $spitshell >>$Makefile <<'!NO!SUBS!'
1019 lib/buildcustomize.pl: $& $(miniperl_objs) write_buildcustomize.pl
1020         -@rm -f miniperl.xok
1021         $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
1022             $(miniperl_objs) $(libs)
1023         $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
1024         $(MINIPERL) -f write_buildcustomize.pl
1025 !NO!SUBS!
1026                 ;;
1027         *)
1028                 if test "X$hostperl" != X; then
1029                         $spitshell >>$Makefile <<!GROK!THIS!
1030 lib/buildcustomize.pl: \$& \$(miniperl_dep) write_buildcustomize.pl
1031         -@rm -f miniperl.xok
1032         -@rm \$(MINIPERL_EXE)
1033         \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
1034         \$(LDLIBPTH) ./miniperl\$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
1035         \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
1036 !GROK!THIS!
1037                 else
1038                         $spitshell >>$Makefile <<'!NO!SUBS!'
1039 lib/buildcustomize.pl: $& $(miniperl_dep) write_buildcustomize.pl
1040         -@rm -f miniperl.xok
1041         $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
1042             $(miniperl_objs) $(libs)
1043         $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
1044         $(MINIPERL) -f write_buildcustomize.pl
1045 !NO!SUBS!
1046                 fi
1047                 ;;
1048         esac
1049
1050         $spitshell >>$Makefile <<'!NO!SUBS!'
1051
1052 $(PERL_EXE): $& $(perlmain_dep) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
1053         -@rm -f miniperl.xok
1054 !NO!SUBS!
1055
1056         case $osname in
1057         # In AmigaOS the Perl executable needs to be linked with -ldl,
1058         # but none of the other executables should be.
1059         amigaos) $spitshell >>$Makefile <<'!NO!SUBS!'
1060         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) $(perlmain_objs) $(LLIBPERL) $(static_ext) `cat ext.libs` $(libs) -ldl
1061 !NO!SUBS!
1062         ;;
1063         os390) $spitshell >>$Makefile <<'!NO!SUBS!'
1064         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) $(perlmain_objs) $(LLIBPERL) $(static_ext) `cat ext.libs` $(libs)
1065 !NO!SUBS!
1066         ;;
1067
1068         darwin)
1069             case "$useshrplib$osvers" in
1070             true1[5-9]*|true[2-9]*) $spitshell >>$Makefile <<'!NO!SUBS!'
1071         $(SHRPENV) $(CC) -o perl $(PERL_EXE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) $(perlmain_objs) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
1072 !NO!SUBS!
1073                ;;
1074             *) $spitshell >>$Makefile <<'!NO!SUBS!'
1075         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) $(perlmain_objs) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
1076 !NO!SUBS!
1077                ;;
1078             esac
1079         ;;
1080
1081         *) $spitshell >>$Makefile <<'!NO!SUBS!'
1082         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) $(perlmain_objs) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
1083 !NO!SUBS!
1084         ;;
1085         esac
1086
1087         $spitshell >>$Makefile <<'!NO!SUBS!'
1088
1089 # Microperl.  This is just a convenience thing if one happens to
1090 # build also the full Perl and therefore the real big Makefile:
1091 # usually one should manually explicitly issue the below command.
1092
1093 .PHONY: microperl
1094 microperl:
1095         $(MAKE) -f Makefile.micro
1096
1097 !NO!SUBS!
1098
1099 fi
1100
1101 # Some environment have no system(), which mkpport uses.
1102 # Let's try running the commands with shell.
1103 case "${osname}" in
1104 catamount)
1105 $spitshell >>$Makefile <<!GROK!THIS!
1106 .PHONY: makeppport
1107 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
1108         -@for f in Makefile.PL PPPort_pm.PL RealPPPort_xs.PL ppport_h.PL; do \
1109         (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
1110         done
1111
1112 !GROK!THIS!
1113 ;;
1114 *)
1115 $spitshell >>$Makefile <<'!NO!SUBS!'
1116 .PHONY: makeppport
1117 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
1118         $(MINIPERL) mkppport
1119
1120 !NO!SUBS!
1121 ;;
1122 esac
1123
1124 $spitshell >>$Makefile <<'!NO!SUBS!'
1125
1126 .PHONY: preplibrary common_build
1127 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
1128
1129 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
1130
1131 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
1132         $(MINIPERL) configpm
1133
1134 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
1135
1136 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
1137         $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
1138 #       Commented out so always runs, mktables looks at far more files than we
1139 #       can in this makefile to decide if needs to run or not
1140 #       touch uni.data
1141
1142 # $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
1143 # But also this ensures that all extensions are built before we try to scan
1144 # them, which picks up Devel::PPPort's documentation.
1145 pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
1146         $(RUN_PERL) -f pod/buildtoc -q
1147
1148 pod/perlapi.pod: pod/perlintern.pod
1149
1150 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
1151         $(MINIPERL) autodoc.pl
1152
1153 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1154         $(MINIPERL) pod/perlmodlib.PL -q
1155
1156 pod/perl5315delta.pod: pod/perldelta.pod
1157         $(RMS) pod/perl5315delta.pod
1158         $(LNS) perldelta.pod pod/perl5315delta.pod
1159
1160 extra.pods: $(MINIPERL_EXE)
1161         -@test ! -f extra.pods || rm -f `cat extra.pods`
1162         -@rm -f extra.pods
1163         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1164             nx=`echo $$x | sed -e "s/README\.//"`; \
1165             $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1166             echo "pod/perl"$$nx".pod" >> extra.pods ; \
1167         done
1168
1169 extras.make: $(PERL_EXE)
1170         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1171
1172 extras.test: $(PERL_EXE)
1173         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1174
1175 extras.install: $(PERL_EXE)
1176         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1177
1178 .PHONY: install install-strip install-all install-verbose install-silent \
1179         no-install install.perl install.man install.html
1180
1181 # Set this to an empty string to avoid an attempt of rebuild before install
1182 INSTALL_DEPENDENCE = all
1183
1184 no_install no-install: install-notify
1185
1186 install: install-all
1187 !NO!SUBS!
1188
1189 for name in all notify silent strip verbose; do
1190     flags="--$name";
1191     flags=`echo $flags | sed -e 's/--all//'`
1192     if test "X$hostperl" != X; then
1193         $spitshell >>$Makefile <<EOT
1194
1195 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1196         \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1197         \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1198 EOT
1199     else
1200         $spitshell >>$Makefile <<EOT
1201
1202 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1203         \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1204         \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1205 EOT
1206     fi
1207
1208     test $name = notify || echo '       -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '\''@ARGV&&install(@ARGV)'\'' `cat extras.lst`' >>$Makefile
1209 done
1210
1211 if test "X$hostperl" != X; then
1212         LOCAL_PERL='$(HOST_PERL)'
1213         $spitshell >>$Makefile <<'!NO!SUBS!'
1214 install.perl:   $(INSTALL_DEPENDENCE) installperl
1215         $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1216         -@test ! -s extras.lst || $(MAKE) extras.install
1217 !NO!SUBS!
1218 else
1219         LOCAL_PERL='$(RUN_PERL)'
1220         $spitshell >>$Makefile <<'!NO!SUBS!'
1221 install.perl:   $(INSTALL_DEPENDENCE) installperl
1222         $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1223         -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1224
1225 !NO!SUBS!
1226 fi
1227
1228 $spitshell >>$Makefile <<!GROK!THIS!
1229 install.man:    all installman
1230         ${LOCAL_PERL} installman --destdir=\$(DESTDIR) \$(INSTALLFLAGS)
1231
1232 # XXX Experimental. Hardwired values, but useful for testing.
1233 # Eventually Configure could ask for some of these values.
1234 install.html: all installhtml
1235         -@test -f README.vms && cd vms && \$(LNS) ../README.vms README_vms.pod && cd ..
1236         ${LOCAL_PERL} installhtml   \\
1237       --podroot=. --podpath=. --recurse  \\
1238       --htmldir=\$(privlib)/html   \\
1239       --splithead=pod/perlipc     \\
1240       --splititem=pod/perlfunc    \\
1241       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \\
1242       --verbose
1243 !GROK!THIS!
1244
1245 $spitshell >>$Makefile <<'!NO!SUBS!'
1246
1247 # I now supply perly.c with the kits, so the following section is
1248 # used only if you force bison to run by saying
1249 #       make regen_perly
1250 # You normally shouldn't remake perly.[ch].
1251
1252 .PHONY: regen_perly
1253
1254 run_byacc run-byacc:
1255         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1256
1257 # this outputs perly.h, perly.act and perly.tab
1258 regen_perly regen-perly:
1259         perl regen_perly.pl
1260
1261 # We don't want to regenerate perly.c and perly.h, but they might
1262 # appear out-of-date after a patch is applied or a new distribution is
1263 # made.
1264 perly.c: perly.y
1265         -@sh -c true
1266
1267 perly.h: perly.y
1268         -@sh -c true
1269
1270 SYM  = globvar.sym perlio.sym
1271
1272 SYMH = perlvars.h intrpvar.h
1273
1274 CHMOD_W = chmod +w
1275
1276 # The following files are generated automatically
1277 #       embed.pl:       proto.h embed.h embedvar.h perlapi.h perlapi.c
1278 #       opcode.pl:      opcode.h opnames.h pp_proto.h
1279 #       regcomp.pl:     regnodes.h
1280 #       warnings.pl:    warnings.h lib/warnings.pm
1281 #       feature.pl:     feature.h lib/feature.pm
1282 # The correct versions should be already supplied with the perl kit,
1283 # in case you don't have perl available.
1284 # To force them to be regenerated, run
1285 #       perl regen.pl
1286 # with your existing copy of perl
1287 # (make regen_headers is kept for backwards compatibility)
1288
1289 .PHONY: regen_headers regen_all
1290
1291 regen:  FORCE
1292         -perl regen.pl
1293         -perl regen/uconfig_h.pl
1294
1295 regen_headers regen-headers:    FORCE
1296         -perl regen.pl -v
1297         -perl regen/uconfig_h.pl -v
1298
1299 regen_meta regen-meta:  META.yml META.json
1300
1301 META.yml:   FORCE
1302         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1303
1304 META.json:   FORCE
1305         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1306
1307
1308 regen_all regen-all: regen regen_meta
1309
1310 .PHONY: manisort manicheck
1311
1312 manisort:       FORCE
1313         @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1314                 perl Porting/manisort -q -o MANIFEST; sh -c true)
1315
1316 manicheck:      FORCE
1317         perl Porting/manicheck
1318
1319 # Extensions:
1320 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1321 # automatically get built.  There should ordinarily be no need to change
1322 # any of this part of makefile.
1323 #
1324 # The dummy dependency is a place holder in case $(dynamic_ext) or
1325 # $(static_ext) is empty.
1326 #
1327 # DynaLoader may be needed for extensions that use Makefile.PL.
1328
1329 $(DYNALOADER):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1330         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1331
1332 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1333         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1334
1335 s_dummy $(static_ext):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1336         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1337
1338 n_dummy $(nonxs_ext):   $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1339         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL)
1340 !NO!SUBS!
1341
1342 $spitshell >>$Makefile <<EOF
1343 $extra_dep
1344 EOF
1345
1346 $spitshell >>$Makefile <<'!NO!SUBS!'
1347
1348 .PHONY: printconfig
1349 printconfig:
1350         @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1351
1352 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1353         realclean _realcleaner clobber _clobber \
1354         distclean veryclean _verycleaner
1355
1356 clean:          realclean
1357
1358 realclean:      _realcleaner _mopup
1359         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1360
1361 _clobber:
1362         -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1363         -rm -rf host
1364         rm -f t/test_state
1365         rm -f config.sh cppstdin Policy.sh extras.lst
1366         rm -f $(MANIFEST_SRT)
1367
1368 clobber:        _realcleaner _mopup _clobber
1369
1370 distclean:      clobber
1371
1372 # Like distclean but also removes emacs backups and *.orig.
1373 veryclean:      _verycleaner _mopup _clobber
1374         -@rm -f Obsolete Wanted
1375
1376 # Do not 'make _mopup' directly.
1377 _mopup:
1378         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1379         -rmdir .depending
1380         -@test -f extra.pods && rm -f `cat extra.pods`
1381         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1382         -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1383         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1384         -rm -f *perl.xok
1385         -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1386         -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1387         -rm -f config.arch config.over $(DTRACE_H)
1388
1389 _cleaner1:
1390         -cd os2; rm -f Makefile
1391         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1392         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1393         -@if test -f $(MINIPERL_EXE) ; then \
1394         for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1395         $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE="$(MAKE)" ; \
1396         done ; \
1397         else \
1398         sh $(CLEAN).sh ; \
1399         fi
1400         rm -f realclean.sh veryclean.sh
1401         -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1402
1403 # Dear POSIX, thanks for making the default to xargs to be
1404 # run once if nothhing is passed in. It is such a great help.
1405
1406 # Some systems do not support "?", so keep these files separate.
1407
1408 # The Time::HiRes Makefile *should* remove dist/Time-HiRes/xdefine for 'clean',
1409 # but it's possible to get a rebuilt checkout into a state where it can't run
1410 # distclean, and can't recover until the file is gone.
1411 # There's no harm in adding it to the top level 'distclean' target - it should
1412 # anyway by then, and miniperl is long gone.
1413 # Add new rules before that line - the next line (rm -f so_locations ...) is
1414 # used as a placeholder by a regen script.
1415 _cleaner2:
1416         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1417         rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1418         rm -f t/$(PERL_EXE) t/rantests
1419         rm -rf t/tmp*
1420         rm -rf $(addedbyconf)
1421         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1422         rm -f $(private)
1423         rm -rf $(unidatafiles) $(unidatadirs)
1424         rm -rf lib/auto
1425         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1426         rm -f h2ph.man
1427         rm -rf .config
1428         rm -f preload
1429         rm -f pod2htmd.tmp
1430         rm -rf pod/perlfunc pod/perlipc
1431         -rmdir ext/B/lib
1432         -rm -f dist/Time-HiRes/xdefine
1433         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1434         -rmdir lib/version lib/threads lib/inc/ExtUtils lib/inc lib/encoding
1435         -rmdir lib/autodie/exception lib/autodie/Scope lib/autodie lib/XS
1436         -rmdir lib/Win32API lib/VMS lib/Unicode/Collate/Locale
1437         -rmdir lib/Unicode/Collate/CJK lib/Unicode/Collate lib/Tie/Hash
1438         -rmdir lib/Thread lib/Text lib/Test2/Util lib/Test2/Tools
1439         -rmdir lib/Test2/IPC/Driver lib/Test2/IPC lib/Test2/Hub/Interceptor
1440         -rmdir lib/Test2/Hub lib/Test2/Formatter lib/Test2/EventFacet/Info
1441         -rmdir lib/Test2/EventFacet lib/Test2/Event/TAP lib/Test2/Event
1442         -rmdir lib/Test2/API lib/Test2 lib/Test/use lib/Test/Tester
1443         -rmdir lib/Test/Builder/Tester lib/Test/Builder/IO lib/Test/Builder
1444         -rmdir lib/Test lib/Term lib/TAP/Parser/YAMLish
1445         -rmdir lib/TAP/Parser/SourceHandler lib/TAP/Parser/Scheduler
1446         -rmdir lib/TAP/Parser/Result lib/TAP/Parser/Iterator lib/TAP/Parser
1447         -rmdir lib/TAP/Harness lib/TAP/Formatter/File
1448         -rmdir lib/TAP/Formatter/Console lib/TAP/Formatter lib/TAP
1449         -rmdir lib/Sys/Syslog lib/Sys lib/Sub lib/Search lib/Scalar
1450         -rmdir lib/Pod/Text lib/Pod/Simple lib/Pod/Perldoc lib/PerlIO/via
1451         -rmdir lib/PerlIO lib/Perl lib/Parse/CPAN lib/Parse lib/Params
1452         -rmdir lib/Net/FTP lib/Module/Load lib/Module/CoreList lib/Module
1453         -rmdir lib/Memoize lib/Math/BigInt lib/Math/BigFloat lib/Math lib/MIME
1454         -rmdir lib/Locale/Maketext lib/Locale lib/List/Util lib/List
1455         -rmdir lib/JSON/PP lib/JSON lib/IPC lib/IO/Uncompress/Adapter
1456         -rmdir lib/IO/Uncompress lib/IO/Socket lib/IO/Compress/Zlib
1457         -rmdir lib/IO/Compress/Zip lib/IO/Compress/Gzip lib/IO/Compress/Base
1458         -rmdir lib/IO/Compress/Adapter lib/IO/Compress lib/IO
1459         -rmdir lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash lib/HTTP
1460         -rmdir lib/Filter/Util lib/Filter lib/File/Spec lib/ExtUtils/Typemaps
1461         -rmdir lib/ExtUtils/ParseXS lib/ExtUtils/MakeMaker/version
1462         -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1463         -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1464         -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1465         -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1466         -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1467         -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1468         -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1469         -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Plugin
1470         -rmdir lib/CPAN/Meta/History lib/CPAN/Meta lib/CPAN/LWP
1471         -rmdir lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP lib/CPAN/Exception
1472         -rmdir lib/CPAN/API lib/CPAN lib/Attribute lib/Archive/Tar lib/Archive
1473         -rmdir lib/App/Prove/State/Result lib/App/Prove/State lib/App/Prove
1474         -rmdir lib/App lib/Amiga
1475
1476 _realcleaner:
1477         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1478         @$(LDLIBPTH) $(MAKE) _cleaner2
1479
1480 _verycleaner:
1481         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1482         @$(LDLIBPTH) $(MAKE) _cleaner2
1483         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1484
1485 .PHONY: lint
1486 lint: $(c)
1487         rm -f *.ln
1488         lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1489
1490 cscopeflags = -Rb  # Recursive, build-only.
1491
1492 .PHONY: cscope
1493 # To query the cscope.out "cscope -dLnsymbol" where n = 0 means uses,
1494 # 1 = definitions, 2 = callees, 3 = callers, for example
1495 # "cscope -dL1Perl_mg_set" or run cscope interactively (no arguments).
1496 cscope.out cscope: $(c) $(h)
1497         cscope $(cscopeflags)
1498
1499 # Need to unset during recursion to go out of loop.
1500 # The README below ensures that the dependency list is never empty and
1501 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1502
1503 MAKEDEPEND = Makefile makedepend
1504
1505 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1506         $(MAKE) depend MAKEDEPEND=
1507 !NO!SUBS!
1508
1509 for f in $SH; do
1510     file=`SH_to_target $f`
1511     $spitshell >>$Makefile <<!GROK!THIS!
1512
1513 $file: $f config.sh
1514         \$(SHELL) $f
1515 !GROK!THIS!
1516 done
1517
1518 $spitshell >>$Makefile <<'!NO!SUBS!'
1519
1520 .PHONY: depend
1521 depend: makedepend $(DTRACE_H) $(generated_headers)
1522         sh ./makedepend MAKE="$(MAKE)" cflags
1523
1524 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1525         test_prep_reonly test_tty test-tty test_notty test-notty \
1526         test_harness test_harness_notty minitest test-reonly _test
1527
1528 # The _test target is there just for Test::Smoke, which does a make test_prep
1529 # always before invoking this target, thus preventing checking again
1530 _test:
1531         $(RUN_TESTS) choose
1532
1533 # Cannot delegate rebuilding of t/perl to make
1534 # to allow interlaced test and minitest
1535
1536 # Architecture-neutral stuff:
1537
1538 test_prep_pre: preplibrary utilities $(nonxs_ext)
1539 !NO!SUBS!
1540
1541 case "$targethost" in
1542 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1543 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1544         $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods) common_build
1545         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1546
1547 !NO!SUBS!
1548 ;;
1549 *) $spitshell >>$Makefile <<!GROK!THIS!
1550 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1551         \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1552         \$(generated_pods) common_build
1553         $to libperl.*
1554         $to t/*
1555         $to lib/*
1556         $to TestInit.pm
1557         $to win32/FindExt.pm
1558         $to regen/*
1559         $to pod/*
1560         $to MANIFEST
1561         $to Porting/*
1562         $to cpan/*/t
1563         $to dist/*/t
1564         $to ext/*/t
1565         $to cpan/Archive-Tar/*
1566         $to cpan/Module-Metadata/*
1567         $to cpan/Term-Cap/test.pl
1568         $to cpan/Pod-Usage/*
1569         $to cpan/Pod-Parser/*
1570         $to cpan/IO-Compress/*
1571         $to cpan/HTTP-Tiny/lib/*
1572         $to cpan/Filter-Util-Call/filter-util.pl
1573         $to cpan/Digest-MD5/*
1574         $to cpan/Digest-SHA/*
1575         $to cpan/Test-Simple/*
1576         $to cpan/Pod-Parser/lib/*
1577         $to cpan/Test-Harness/*
1578         $to cpan/Scalar-List-Utils/*
1579         $to ext/IPC-Open3/*
1580         $to ext/Tie-Memoize/*
1581         $to ext/POSIX/*
1582         $to dist/IO/*
1583 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1584         $to config_h.SH
1585         $to perl.h
1586         $to cflags
1587         $to *.h
1588 # --- For t/porting/customized.t
1589         $to vutil.c
1590         $to vxs.inc
1591 # --- For t/TEST
1592         $to config.sh
1593 # --- For lib/diagnostics.t with -Duseshrplib
1594         $to \$(PERL_EXE)
1595         cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1596         $to t/\$(PERL_EXE)
1597
1598 !GROK!THIS!
1599 ;;
1600 esac
1601
1602 $spitshell >>$Makefile <<'!NO!SUBS!'
1603 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1604         $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1605         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1606 !NO!SUBS!
1607
1608 case "$targethost" in
1609 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1610
1611 test check: test_prep
1612         $(RUN_TESTS) choose
1613
1614 !NO!SUBS!
1615 ;;
1616 *) $spitshell >>$Makefile <<!GROK!THIS!
1617
1618 test check: test_prep
1619         $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1620
1621 !GROK!THIS!
1622 ;;
1623 esac
1624
1625 $spitshell >>$Makefile <<'!NO!SUBS!'
1626 test_tty test-tty: test_prep
1627         $(RUN_TESTS) tty
1628
1629 test_notty test-notty: test_prep
1630         $(RUN_TESTS) no-tty
1631
1632 !NO!SUBS!
1633
1634 case "${osname}${osvers}" in
1635 linux*|darwin*)
1636         $spitshell >>$Makefile <<'!NO!SUBS!'
1637 # Targets for valgrind testing:
1638
1639 test.valgrind check.valgrind:   test_prep
1640         @echo "Checking usemymalloc='n' in config.sh..."
1641         @grep "^usemymalloc="    config.sh
1642         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1643         @echo "And of course you have to have valgrind..."
1644         $(VALGRIND) $(VG_TEST) || exit 1
1645         PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1646 !NO!SUBS!
1647         ;;
1648 esac
1649
1650 $spitshell >>$Makefile <<'!NO!SUBS!'
1651
1652 # minitest can't depend on lib/Config.pm because that might be where miniperl
1653 # is crashing.
1654 minitest_prep:
1655         -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1656         @echo " "
1657         @echo "You may see some irrelevant test failures if you have been unable"
1658         @echo "to build lib/Config.pm, or the Unicode data files."
1659         @echo " "
1660         - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE))
1661
1662 MINITEST_TESTS = base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t
1663
1664 minitest: $(MINIPERL_EXE) minitest_prep
1665         - cd t && $(RUN_PERL) TEST $(MINITEST_TESTS) <$(devtty)
1666
1667 minitest-notty minitest_notty: $(MINIPERL_EXE) minitest_prep
1668         - cd t && PERL_SKIP_TTY_TEST=1 $(RUN_PERL) TEST $(MINITEST_TESTS)
1669
1670 # Test via harness
1671
1672 test_harness test-harness: test_prep
1673         TESTFILE=harness $(RUN_TESTS) choose
1674
1675 test_harness_notty: test_prep
1676         HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1677
1678 test_reonly test-reonly: test_prep_reonly
1679         TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1680
1681
1682 # Porting tests (well-formedness of pod, manifest, etc)
1683
1684 test_porting test-porting: test_prep
1685         cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1686
1687 !NO!SUBS!
1688
1689 $spitshell>>$Makefile <<!GROK!THIS!
1690
1691 # intended as a common way to add dependencies to test-prep and all
1692 common_build: $common_build_deps
1693
1694 !GROK!THIS!
1695
1696 $spitshell >>$Makefile <<'!NO!SUBS!'
1697
1698 # Handy way to run perlbug -ok without having to install and run the
1699 # installed perlbug. We don't re-run the tests here - we trust the user.
1700 # Please *don't* use this unless all tests pass.
1701 # If you want to report test failures, use "make nok" instead.
1702
1703 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1704
1705 ok:     utilities
1706         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1707
1708 okfile: utilities
1709         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1710
1711 oknack: utilities
1712         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1713
1714 okfilenack:     utilities
1715         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1716
1717 nok:    utilities
1718         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1719
1720 nokfile:        utilities
1721         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1722
1723 noknack:        utilities
1724         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1725
1726 nokfilenack:    utilities
1727         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1728
1729 .PHONY: clist hlist
1730
1731 clist:  $(c)
1732         echo $(c) | tr ' ' $(TRNL) >.clist
1733
1734 hlist:  $(h)
1735         echo $(h) | tr ' ' $(TRNL) >.hlist
1736
1737 .PHONY: distcheck
1738 distcheck: FORCE
1739         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1740
1741 .PHONY: ctags
1742
1743 TAGS: $(c1) $(c2) $(c3) $(c4) $(c5) $(h)
1744         etags $(c1) $(c2) $(c3) $(c4) $(c5) $(h)
1745
1746 ctags:
1747         ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1748
1749 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1750 # If this runs make out of memory, delete /usr/include lines.
1751 !NO!SUBS!
1752
1753 $eunicefix Makefile
1754 $rm -f $firstmakefile
1755
1756 # Now do any special processing required before building.
1757
1758 case "$ebcdic" in
1759 define)
1760     xxx=''
1761     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1762 case "$osname" in
1763 os390|posix-bc)
1764     ;;
1765 *)
1766     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1767     ;;
1768 esac
1769     case "$xxx" in
1770     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1771     esac
1772     ;;
1773 esac
1774
1775 # ex: set ts=8 sts=4 sw=4 noet: