3 # quote() - Creates a shell literal
4 # Usage: echo "...` quote "..." `..."
8 *) echo "$1" | sed 's/\([^a-zA-Z0-9.:_\-\/]\)/\\\1/g' ;;
12 case $PERL_CONFIG_SH in
17 echo "Can't find config.sh."; exit 1
25 : This forces SH files to create target in same directory as SH file.
26 : This is so that make depend always knows where to find SH derivatives.
28 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
32 linklibperl='$(LIBPERL)'
34 shrpldflags='$(LDDLFLAGS)'
36 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
37 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
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 '') ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;;
44 *) ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;;
47 pldlflags="$cccdlflags"
49 case "${osname}${osvers}" in
52 lddlflags="-dynamic -undefined warning -framework System \
53 -compatibility_version 1 -current_version $patchlevel \
54 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
57 shrpldflags="${ldflags} -dynamiclib \
58 -compatibility_version \
59 ${api_revision}.${api_version}.${api_subversion} \
61 ${revision}.${patchlevel}.${subversion} \
62 -install_name \$(shrpdir)/\$@"
65 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
66 linklibperl="-L. -lperl"
71 netbsd*|freebsd[234]*|openbsd*|dragonfly*|bitrig*)
72 linklibperl="-L. -lperl"
75 linklibperl="-L. -lperl"
76 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
81 shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
83 3*) shrpldflags="$shrpldflags -e _nostart"
85 *) shrpldflags="$shrpldflags -Wl,-bnoentry"
88 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
89 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
90 linklibperl_nonshr='-lperl_nonshr'
93 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
95 3*) shrpldflags="$shrpldflags -e _nostart"
97 *) shrpldflags="$shrpldflags -b noentry"
100 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
101 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
102 linklibperl_nonshr='-lperl_nonshr'
107 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
110 shrpldflags='-W l,XPLINK,dll'
111 linklibperl='libperl.x'
112 DPERL_EXTERNAL_GLOB=''
115 case "$ldlibpthname" in
123 eval "ldlibpthval=\"\$$ldlibpthname\""
125 case "$ldlibpthval" in
126 '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;;
127 *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;;
138 # If there is a pre-existing $libperl from a previous
139 # installation, Linux needs to use LD_PRELOAD to
140 # override the LD_LIBRARY_PATH setting. See the
141 # INSTALL file, under "Building a shared perl library".
142 # If there is no pre-existing $libperl, we don't need
143 # to do anything further.
144 if test -f $archlib/CORE/$libperl; then
146 cat <<'EOT' > preload
150 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
154 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
157 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
164 static_ldflags='CCCDLFLAGS='
168 : is Cwd static or dynamic
170 list_util_dep='$(PERL_EXE)'
171 for f in $dynamic_ext; do
173 Cwd) static_cwd='undef' ;;
174 List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext
178 : Prepare dependency lists for Makefile.
180 dynamic_ext_re="lib/auto/re/re.$dlext"
182 ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
184 for f in $dynamic_ext; do
185 : the dependency named here will never exist
186 base=`echo "$f" | sed 's/.*\///'`
187 this_target="lib/auto/$f/$base.$dlext"
188 dynamic_list="$dynamic_list $this_target"
190 : Parallel makes reveal that we have some interdependencies
192 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
193 $this_target: $list_util_dep" ;;
194 Unicode/Normalize) extra_dep="$extra_dep
195 $this_target: uni.data" ;;
200 for f in $static_ext; do
201 base=`echo "$f" | sed 's/.*\///'`
202 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
203 : Parallel makes reveal that we have some interdependencies
204 this_target="lib/auto/$f/$base\$(LIB_EXT)"
206 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
207 $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
208 Unicode/Normalize) extra_dep="$extra_dep
209 $this_target: uni.data" ;;
214 for f in $nonxs_ext; do
215 p=`echo "$f" | tr / -`
216 for d in ext dist cpan; do
217 if test -d $d/$p; then
218 nonxs_list="$nonxs_list $d/$p/pm_to_blib"
228 dtrace_h='perldtrace.h'
229 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
230 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)' \
231 && minidtrace_o='miniperldtrace$(OBJ_EXT)'
235 echo "Extracting $Makefile (with variable substitutions)"
236 $spitshell >$Makefile <<!GROK!THIS!
238 # This file is derived from Makefile.SH. Any changes made here will
239 # be lost the next time you run Configure.
240 # Makefile is used to generate $firstmakefile. The only difference
241 # is that $firstmakefile has the dependencies filled in at the end.
249 mallocsrc = $mallocsrc
250 mallocobj = $mallocobj
252 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
257 # The following are mentioned only to make metaconfig include the
258 # appropriate questions in Configure. If you want to change these,
259 # edit config.sh instead, or specify --man1dir=/wherever on
260 # installman commandline.
262 scriptdir = $scriptdir
263 shrpdir = $archlibexp/CORE
264 privlib = $installprivlib
270 # The following are used to build and install shared libraries for
272 LDDLFLAGS = $lddlflags
273 SHRPLDFLAGS = $shrpldflags
274 CCDLFLAGS = $ccdlflags
276 PLDLFLAGS = $pldlflags
278 LLIBPERL= $linklibperl
279 LLIBPERL_NONSHR= $linklibperl_nonshr
282 # Static targets are ordinarily built without CCCDLFLAGS. However,
283 # if building a shared libperl.so that might later be linked into
284 # another application, then it might be appropriate to also build static
285 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
287 STATIC_LDFLAGS = $static_ldflags
289 # The following is used to include the current directory in
290 # the dynamic loader path you are building a shared libperl.
293 # Sometimes running an executable is an adventure.
296 # When cross-compiling we want to use a (mini)perl built for the host, not the target
297 HOST_PERL = $hostperl
298 HOST_GENERATE = $hostgenerate
301 # These variables may need to be manually set for non-Unix systems.
309 # Macros to invoke a copy of miniperl during the build. Targets which
310 # are built using these macros should depend on \$(MINIPERL_EXE)
311 MINIPERL_EXE = miniperl\$(EXE_EXT)
312 MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
316 case "$usecrosscompile$perl" in
318 $spitshell >>$Makefile <<!GROK!THIS!
319 # Macros to invoke a copy of our fully operational perl during the build.
320 PERL_EXE = perl\$(EXE_EXT)
321 RUN_PERL = \$(LDLIBPTH) \$(RUN) $perl\$(EXE_EXT)
325 $spitshell >>$Makefile <<!GROK!THIS!
326 # Macros to invoke a copy of our fully operational perl during the build.
327 PERL_EXE = perl\$(EXE_EXT)
328 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib
333 $spitshell >>$Makefile <<!GROK!THIS!
334 # Macros to run our tests
335 RUN_TESTS = \$(LDLIBPTH) ./runtests
337 dynamic_ext = $dynamic_list
338 dynamic_ext_re = $dynamic_ext_re
339 static_ext = $static_list
340 nonxs_ext = $nonxs_list
341 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
342 DYNALOADER = DynaLoader\$(OBJ_EXT)
344 libs = $perllibs $cryptlib
346 public = \$(PERL_EXE) utilities
348 shellflags = $shellflags
350 # This is set to MAKE=$make if your $make command doesn't
354 # Mention $gmake here so it gets probed for by Configure.
360 $spitshell >>$Makefile <<!GROK!THIS!
361 # If you're going to use valgrind and it can't be invoked as plain valgrind
362 # then you'll need to change this, or override it on the make command line.
364 VG_TEST ?= ./perl -e 1 2>/dev/null
370 $spitshell >>$Makefile <<!GROK!THIS!
374 MINIDTRACE_O = $minidtrace_o
376 FIRSTMAKEFILE = $firstmakefile
378 # Any special object files needed by this architecture, e.g. os2/os2.obj
381 .SUFFIXES: .c \$(OBJ_EXT) .i .s
386 # how to tr(anslate) newlines
393 INSTALLPREFIXEXP = $prefix
396 # not used by Makefile but by installperl;
397 # mentioned here so that metaconfig picks these up
401 case "${osname}:${osvers}" in
403 $spitshell >>$Makefile <<EOF
405 # Your locales are broken (osname $osname, osvers $osvers)
406 # and to avoid the numerous
407 # perl: warning: Setting locale failed.
408 # warnings during the build process we reset the locale variables.
417 ## In the following dollars and backticks do not need the extra backslash.
418 $spitshell >>$Makefile <<'!NO!SUBS!'
420 CCCMD = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
422 CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
424 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
425 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
427 CONFIGPOD = lib/Config.pod
433 echo $@ | sed -e s/\\\.SH//g -e s/_/./g
436 SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH'
437 shextract=`SH_to_target $SH`
439 ## In the following dollars and backticks do not need the extra backslash.
440 $spitshell >>$Makefile <<!GROK!THIS!
442 private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
444 # Files to be built with variable substitution before miniperl
448 shextract = $shextract
451 ## In the following dollars and backticks do not need the extra backslash.
452 $spitshell >>$Makefile <<'!NO!SUBS!'
454 addedbyconf = UU $(shextract) pstruct
456 # Unicode data files generated by mktables
457 unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
458 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
459 lib/unicore/UCD.pl lib/unicore/Name.pm \
460 lib/unicore/Heavy.pl lib/unicore/mktables.lst
462 # Directories of Unicode data files generated by mktables
463 unidatadirs = lib/unicore/To lib/unicore/lib
465 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
466 h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
467 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
468 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
469 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
470 h6 = charclass_invlists.h
471 h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
473 c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro.c perl.c
474 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
475 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
476 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c
479 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
481 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
482 obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT)
483 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$(OBJ_EXT) keywords$(OBJ_EXT)
484 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)
485 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)
487 minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
488 mini_obj = $(minindt_obj) $(MINIDTRACE_O)
489 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
490 obj = $(ndt_obj) $(DTRACE_O)
492 perltoc_pod_prereqs = extra.pods pod/perl5213delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
493 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
494 generated_headers = uudmap.h bitcount.h mg_data.h
502 -errchk=parentheses \
506 -erroff=E_ASSIGN_NARROW_CONV \
507 -erroff=E_BAD_PTR_CAST \
508 -erroff=E_BAD_PTR_CAST_ALIGN \
509 -erroff=E_BAD_PTR_INT_COMBINATION \
510 -erroff=E_BAD_SIGN_EXTEND \
511 -erroff=E_BLOCK_DECL_UNUSED \
512 -erroff=E_CASE_FALLTHRU \
513 -erroff=E_CONST_EXPR \
514 -erroff=E_CONSTANT_CONDITION \
515 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
516 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
517 -erroff=E_EXPR_NULL_EFFECT \
518 -erroff=E_FALSE_LOGICAL_EXPR \
519 -erroff=E_INCL_NUSD \
520 -erroff=E_LOOP_EMPTY \
521 -erroff=E_MAIN_PARAM \
522 -erroff=E_POINTER_TO_OBJECT \
523 -erroff=E_PTRDIFF_OVERFLOW \
524 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
525 -erroff=E_STATIC_UNUSED \
526 -erroff=E_TRUE_LOGICAL_EXPR
529 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
530 -D__builtin_va_list=va_list \
531 -Dsigjmp_buf=jmp_buf \
555 @echo `$(CCCMD)` $(PLDLFLAGS) $*.c
556 @`$(CCCMD)` $(PLDLFLAGS) $*.c
559 @echo `$(CCCMDSRC)` -E $*.c \> $*.i
560 @`$(CCCMDSRC)` -E $*.c > $*.i
563 @echo `$(CCCMDSRC)` -S $*.c
564 @`$(CCCMDSRC)` -S $*.c
566 all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
568 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
570 .PHONY: all utilities
572 # Both git_version.h and lib/Config_git.pl are built
573 # by make_patchnum.pl.
574 git_version.h: lib/Config_git.pl
576 lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
577 $(MINIPERL) make_patchnum.pl
579 # make sure that we recompile perl.c if the git version changes
580 perl$(OBJ_EXT): git_version.h
584 # Making utilities requires Cwd. If we have dynamic
585 # loading, we only need miniperl and Cwd.$dlext. If we have static
586 # loading, we need to build perl first.
587 case "$usedl$static_cwd" in
589 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
592 util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
594 *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
598 $spitshell >>$Makefile <<!GROK!THIS!
599 utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
600 \$(MINIPERL) -Ilib utils/Makefile.PL
602 utilities: utils/Makefile $util_deps
603 @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
607 $spitshell >>$Makefile <<'!NO!SUBS!'
609 # This is now done by installman only if you actually want the man pages.
610 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
612 # Phony target to force checking subdirectories.
613 # Apparently some makes require an action for the FORCE target.
619 for file in op perl; do
620 if $issymlink $file.c; then
621 $spitshell >>$Makefile <<!GROK!THIS!
623 # We do a copy of the $file.c instead of a symlink because gcc gets huffy
624 # if we have a symlink forest to another disk (it complains about too many
625 # levels of symbolic links, even if we have only two)
627 ${file}mini.c: $file.c
628 \$(RMS) ${file}mini.c
629 \$(CPS) ${file}.c ${file}mini.c
632 $spitshell >>$Makefile <<!GROK!THIS!
634 ${file}mini.c: $file.c
635 \$(RMS) ${file}mini.c
636 \$(LNS) ${file}.c ${file}mini.c
640 $spitshell >>$Makefile <<!GROK!THIS!
642 ${file}mini\$(OBJ_EXT): ${file}mini.c
643 echo @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
644 @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
648 $spitshell >>$Makefile <<'!NO!SUBS!'
650 globals$(OBJ_EXT): $(generated_headers)
652 uudmap.h mg_data.h: bitcount.h
654 generate_uudmap$(OBJ_EXT): mg_raw.h
658 # If hostgerenate isn't defined, then we have to build
659 # generate_uudmap and run it. This can potentially mean running
660 # it on the target system if we're cross-compiling.
661 # If it is defined, then we just run it locally.
662 case "$hostgenerate" in
664 $spitshell >>$Makefile <<!GROK!THIS!
665 bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
666 $run ./generate_uudmap\$(HOST_EXE_EXT) \$(generated_headers)
667 -@for f in \$(generated_headers); do \\
673 $spitshell >>$Makefile <<'!NO!SUBS!'
674 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
675 $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
680 $spitshell >>$Makefile <<'!NO!SUBS!'
681 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
682 ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
684 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
685 -@rm generate_uudmap$(HOST_EXE_EXT)
686 $(LNS) $(HOST_GENERATE) generate_uudmap$(HOST_EXE_EXT)
693 $spitshell >>$Makefile <<'!NO!SUBS!'
694 perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
695 $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
697 # The file ext.libs is a list of libraries that must be linked in
698 # for static extensions, e.g. -lm -lgdbm, etc. The individual
699 # static extension Makefile's add to it.
700 ext.libs: $(static_ext)
701 -@test -f ext.libs || touch ext.libs
705 # How to build libperl. This is still rather convoluted.
706 # Load up custom Makefile.SH fragment for shared loading and executables:
709 Makefile_s="$osname/Makefile.SHs"
715 $spitshell >>$Makefile <<!GROK!THIS!
717 # In AIX we need to change this for building Perl itself from
718 # its earlier definition (which is for building external
719 # extensions *after* Perl has been built and installed)
720 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
723 case "$useshrplib" in
725 $spitshell >>$Makefile <<'!NO!SUBS!'
727 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
728 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
730 $(LIBPERL_NONSHR): $(obj)
731 $(RMS) $(LIBPERL_NONSHR)
732 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
734 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
735 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
736 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
738 MINIPERLEXP = $(MINIPERL_NONSHR)
740 LIBPERLEXPORT = perl.exp
746 $spitshell >>$Makefile <<'!NO!SUBS!'
747 MINIPERLEXP = $(MINIPERL_EXE)
749 PERLEXPORT = perl.exp
754 $spitshell >>$Makefile <<'!NO!SUBS!'
755 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
756 ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
761 $spitshell >>$Makefile <<'!NO!SUBS!'
762 MINIPERLEXP = miniperl
764 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
765 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
770 $spitshell >>$Makefile <<'!NO!SUBS!'
771 cygwin.c: cygwin/cygwin.c
772 $(LNS) cygwin/cygwin.c
774 LIBPERL_NONSHR = libperl$(LIB_EXT)
776 $(LIBPERL_NONSHR): $(obj)
777 $(RMS) $(LIBPERL_NONSHR)
778 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
784 if test -s $Makefile_s ; then
786 $spitshell >>$Makefile <<!GROK!THIS!
788 Makefile: $Makefile_s
793 $spitshell >>$Makefile <<'!NO!SUBS!'
794 # dtrace dicards const qualifiers from arguments, put them back
795 $(DTRACE_H): perldtrace.d
796 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
797 sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
798 $(RMS) $(DTRACE_H).in
800 mydtrace.h: $(DTRACE_H)
807 $spitshell >>$Makefile <<'!NO!SUBS!'
808 $(DTRACE_O): perldtrace.d $(ndt_obj)
809 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
811 $(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
812 $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
817 $spitshell >>$Makefile <<'!NO!SUBS!'
818 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
820 case "$useshrplib" in
822 $spitshell >>$Makefile <<'!NO!SUBS!'
824 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
828 $spitshell >>$Makefile <<'!NO!SUBS!'
829 rm -f libperl$(OBJ_EXT)
830 mv $@ libperl$(OBJ_EXT)
831 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
837 $spitshell >>$Makefile <<'!NO!SUBS!'
839 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
840 @$(ranlib) $(LIBPERL)
844 $spitshell >>$Makefile <<'!NO!SUBS!'
846 # How to build executables.
848 # The $& notation tells Sequent machines that it can do a parallel make,
849 # and is harmless otherwise.
850 # The miniperl -w -MExporter line is a basic cheap test to catch errors
851 # before make goes on to run preplibrary and then MakeMaker on extensions.
852 # This is very handy because later errors are often caused by miniperl
853 # build problems but that's not obvious to the novice.
854 # The Module used here must not depend on Config or any extensions.
856 # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
857 # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
858 # miniperl to exist first permits us to
859 # a) have one rule generate both miniperl and lib/buildcustomize.pl
860 # (so that lib/buildcustomize.pl is always available. This simplifies things)
861 # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
863 $(MINIPERL_EXE): lib/buildcustomize.pl
867 case "${osname}${osvers}" in
869 $spitshell >>$Makefile <<'!NO!SUBS!'
870 lib/buildcustomize.pl: $& $(mini_obj)
871 $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
872 $(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'
873 $(MINIPERL) -f write_buildcustomize.pl
877 $spitshell >>$Makefile <<'!NO!SUBS!'
878 lib/buildcustomize.pl: $& $(mini_obj) write ldcustomize.pl
879 $(CC) -o $(MINIPERL_EXE) $(mini_obj libs)
880 $(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'
881 $(MINIPERL) -f write_buildcustomize.pl
887 *) case "$ldflags" in
888 *"-flat_namespace"*) ;;
889 *) # to allow opmini.o to override stuff in libperl.dylib
890 $spitshell >>$Makefile <<!NO!SUBS!
891 NAMESPACEFLAGS = -force_flat_namespace
897 $spitshell >>$Makefile <<'!NO!SUBS!'
898 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
900 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
902 $(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'
903 $(MINIPERL) -f write_buildcustomize.pl
907 if test "X$hostperl" != X; then
908 $spitshell >>$Makefile <<!GROK!THIS!
909 lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl
911 -@rm \$(MINIPERL_EXE)
912 \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
913 \$(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'
914 \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
917 $spitshell >>$Makefile <<'!NO!SUBS!'
918 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
920 $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
922 $(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'
923 $(MINIPERL) -f write_buildcustomize.pl
929 $spitshell >>$Makefile <<'!NO!SUBS!'
931 $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
933 $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
935 # Microperl. This is just a convenience thing if one happens to
936 # build also the full Perl and therefore the real big Makefile:
937 # usually one should manually explicitly issue the below command.
941 $(MAKE) -f Makefile.micro
947 # Some environment have no system(), which mkpport uses.
948 # Let's try running the commands with shell.
951 $spitshell >>$Makefile <<!GROK!THIS!
953 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
954 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
955 (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
961 $spitshell >>$Makefile <<'!NO!SUBS!'
963 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
970 $spitshell >>$Makefile <<'!NO!SUBS!'
973 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
975 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
977 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
980 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
982 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
983 $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
984 # Commented out so always runs, mktables looks at far more files than we
985 # can in this makefile to decide if needs to run or not
988 # $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
989 # But also this ensures that all extensions are built before we try to scan
990 # them, which picks up Devel::PPPort's documentation.
991 pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
992 $(RUN_PERL) -f pod/buildtoc -q
994 pod/perlapi.pod: pod/perlintern.pod
996 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
997 $(MINIPERL) autodoc.pl
999 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1000 $(MINIPERL) pod/perlmodlib.PL -q
1002 pod/perl5213delta.pod: pod/perldelta.pod
1003 $(RMS) pod/perl5213delta.pod
1004 $(LNS) perldelta.pod pod/perl5213delta.pod
1006 extra.pods: $(MINIPERL_EXE)
1007 -@test ! -f extra.pods || rm -f `cat extra.pods`
1009 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1010 nx=`echo $$x | sed -e "s/README\.//"`; \
1011 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1012 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1015 extras.make: $(PERL_EXE)
1016 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1018 extras.test: $(PERL_EXE)
1019 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1021 extras.install: $(PERL_EXE)
1022 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1024 .PHONY: install install-strip install-all install-verbose install-silent \
1025 no-install install.perl install.man install.html
1027 # Set this to an empty string to avoid an attempt of rebuild before install
1028 INSTALL_DEPENDENCE = all
1030 no_install no-install: install-notify
1032 install: install-all
1036 for name in all notify silent strip verbose; do
1038 flags=`echo $flags | sed -e 's/--all//'`
1039 if test "X$hostperl" != X; then
1040 $spitshell >>$Makefile <<EOT
1042 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1043 \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1044 \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1047 $spitshell >>$Makefile <<EOT
1049 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1050 \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1051 \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1055 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
1058 if test "X$hostperl" != X; then
1059 $spitshell >>$Makefile <<'!NO!SUBS!'
1060 install.perl: $(INSTALL_DEPENDENCE) installperl
1061 $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1062 -@test ! -s extras.lst || $(MAKE) extras.install
1064 install.man: all installman
1065 $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1067 # XXX Experimental. Hardwired values, but useful for testing.
1068 # Eventually Configure could ask for some of these values.
1069 install.html: all installhtml
1070 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1071 $(HOST_PERL) installhtml \
1072 --podroot=. --podpath=. --recurse \
1073 --htmldir=$(privlib)/html \
1074 --htmlroot=$(privlib)/html \
1075 --splithead=pod/perlipc \
1076 --splititem=pod/perlfunc \
1077 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1081 $spitshell >>$Makefile <<'!NO!SUBS!'
1082 install.perl: $(INSTALL_DEPENDENCE) installperl
1083 $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1084 -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1086 install.man: all installman
1087 $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1089 # XXX Experimental. Hardwired values, but useful for testing.
1090 # Eventually Configure could ask for some of these values.
1091 install.html: all installhtml
1092 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1093 $(RUN_PERL) installhtml \
1094 --podroot=. --podpath=. --recurse \
1095 --htmldir=$(privlib)/html \
1096 --htmlroot=$(privlib)/html \
1097 --splithead=pod/perlipc \
1098 --splititem=pod/perlfunc \
1099 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1104 $spitshell >>$Makefile <<'!NO!SUBS!'
1106 # I now supply perly.c with the kits, so the following section is
1107 # used only if you force bison to run by saying
1109 # You normally shouldn't remake perly.[ch].
1113 run_byacc run-byacc:
1114 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1116 # this outputs perly.h, perly.act and perly.tab
1117 regen_perly regen-perly:
1120 # We don't want to regenerate perly.c and perly.h, but they might
1121 # appear out-of-date after a patch is applied or a new distribution is
1129 SYM = globvar.sym perlio.sym
1131 SYMH = perlvars.h intrpvar.h
1135 # The following files are generated automatically
1136 # embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c
1137 # opcode.pl: opcode.h opnames.h pp_proto.h
1138 # regcomp.pl: regnodes.h
1139 # warnings.pl: warnings.h lib/warnings.pm
1140 # feature.pl: feature.h lib/feature.pm
1141 # The correct versions should be already supplied with the perl kit,
1142 # in case you don't have perl available.
1143 # To force them to be regenerated, run
1145 # with your existing copy of perl
1146 # (make regen_headers is kept for backwards compatibility)
1148 AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
1149 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
1150 lib/feature.pm feature.h
1152 .PHONY: regen_headers regen_all
1156 -perl regen/uconfig_h.pl
1158 regen_headers regen-headers: FORCE
1160 -perl regen/uconfig_h.pl -v
1162 regen_meta regen-meta: META.yml META.json
1165 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1168 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1171 regen_all regen-all: regen regen_meta
1173 .PHONY: manisort manicheck
1176 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1177 perl Porting/manisort -q -o MANIFEST; sh -c true)
1180 perl Porting/manicheck
1183 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1184 # automatically get built. There should ordinarily be no need to change
1185 # any of this part of makefile.
1187 # The dummy dependency is a place holder in case $(dynamic_ext) or
1188 # $(static_ext) is empty.
1190 # DynaLoader may be needed for extensions that use Makefile.PL.
1192 $(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1193 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1195 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1196 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1198 s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1199 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1201 n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1202 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL)
1205 $spitshell >>$Makefile <<EOF
1209 $spitshell >>$Makefile <<'!NO!SUBS!'
1213 @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1215 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1216 realclean _realcleaner clobber _clobber \
1217 distclean veryclean _verycleaner
1221 realclean: _realcleaner _mopup
1222 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1225 -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1228 rm -f config.sh cppstdin Policy.sh extras.lst
1230 clobber: _realcleaner _mopup _clobber
1234 # Like distclean but also removes emacs backups and *.orig.
1235 veryclean: _verycleaner _mopup _clobber
1236 -@rm -f Obsolete Wanted
1238 # Do not 'make _mopup' directly.
1240 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1242 -@test -f extra.pods && rm -f `cat extra.pods`
1243 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1244 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1245 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1247 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1248 -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1249 -rm -f config.arch config.over $(DTRACE_H)
1251 # Do not 'make _tidy' directly.
1253 -cd pod; $(LDLIBPTH) $(MAKE) clean
1254 -cd utils; $(LDLIBPTH) $(MAKE) clean
1255 -rm -f lib/Config_git.pl git_version.h
1256 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1257 $(MINIPERL) make_ext.pl --target=clean $$x MAKE="$(MAKE)" ; \
1261 -cd os2; rm -f Makefile
1262 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1263 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1264 -@if test -f $(MINIPERL_EXE) ; then \
1265 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1266 $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE="$(MAKE)" ; \
1271 rm -f realclean.sh veryclean.sh
1272 -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1274 # Dear POSIX, thanks for making the default to xargs to be
1275 # run once if nothhing is passed in. It is such a great help.
1277 # Some systems do not support "?", so keep these files separate.
1279 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1280 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1281 rm -f t/$(PERL_EXE) t/rantests
1283 rm -rf $(addedbyconf)
1284 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1286 rm -rf $(unidatafiles) $(unidatadirs)
1288 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1289 rm -f h2ph.man pstruct
1293 rm -rf pod/perlfunc pod/perlipc
1295 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1296 -rmdir lib/version lib/threads lib/encoding lib/autodie/exception
1297 -rmdir lib/autodie/Scope lib/autodie lib/XS lib/Win32API lib/VMS
1298 -rmdir lib/Unicode/Collate/Locale lib/Unicode/Collate/CJK
1299 -rmdir lib/Unicode/Collate lib/Tie/Hash lib/Thread lib/Text
1300 -rmdir lib/Test/Builder/Tester lib/Test/Builder lib/Test lib/Term
1301 -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1302 -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1303 -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1304 -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1305 -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Search
1306 -rmdir lib/Scalar lib/Pod/Text lib/Pod/Simple lib/Pod/Perldoc
1307 -rmdir lib/PerlIO/via lib/PerlIO lib/Perl lib/Parse/CPAN lib/Parse
1308 -rmdir lib/Params lib/Net/FTP lib/Module/Load lib/Module/CoreList
1309 -rmdir lib/Module lib/Memoize lib/Math/BigInt lib/Math/BigFloat
1310 -rmdir lib/Math lib/MIME lib/Locale/Maketext lib/Locale/Codes
1311 -rmdir lib/Locale lib/List/Util lib/List lib/JSON/PP lib/JSON lib/IPC
1312 -rmdir lib/IO/Uncompress/Adapter lib/IO/Uncompress lib/IO/Socket
1313 -rmdir lib/IO/Compress/Zlib lib/IO/Compress/Zip lib/IO/Compress/Gzip
1314 -rmdir lib/IO/Compress/Base lib/IO/Compress/Adapter lib/IO/Compress
1315 -rmdir lib/IO lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash
1316 -rmdir lib/HTTP lib/Filter/Util lib/Filter lib/File/Spec
1317 -rmdir lib/ExtUtils/Typemaps lib/ExtUtils/ParseXS
1318 -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1319 -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1320 -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1321 -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1322 -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1323 -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1324 -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1325 -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Meta
1326 -rmdir lib/CPAN/LWP lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP
1327 -rmdir lib/CPAN/Exception lib/CPAN/API lib/CPAN lib/Attribute
1328 -rmdir lib/Archive/Tar lib/Archive lib/App/Prove/State/Result
1329 -rmdir lib/App/Prove/State lib/App/Prove lib/App
1332 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1333 @$(LDLIBPTH) $(MAKE) _cleaner2
1336 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1337 @$(LDLIBPTH) $(MAKE) _cleaner2
1338 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1343 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1347 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1349 # Need to unset during recursion to go out of loop.
1350 # The README below ensures that the dependency list is never empty and
1351 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1353 MAKEDEPEND = Makefile makedepend
1355 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1356 $(MAKE) depend MAKEDEPEND=
1360 file=`SH_to_target $f`
1361 $spitshell >>$Makefile <<!GROK!THIS!
1368 $spitshell >>$Makefile <<'!NO!SUBS!'
1371 depend: makedepend $(DTRACE_H)
1372 sh ./makedepend MAKE="$(MAKE)" cflags
1374 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1375 test_prep_reonly test_tty test-tty test_notty test-notty \
1376 test_harness test_harness_notty minitest test-reonly _test
1379 echo >&2 The _test target is deprecated. Please upgrade your smoker
1382 # Cannot delegate rebuilding of t/perl to make
1383 # to allow interlaced test and minitest
1385 # Architecture-neutral stuff:
1387 test_prep_pre: preplibrary utilities $(nonxs_ext)
1390 case "$targethost" in
1391 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1392 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1393 $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods)
1394 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1398 *) $spitshell >>$Makefile <<!GROK!THIS!
1399 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1400 \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1406 $to win32/FindExt.pm
1414 $to cpan/Term-Cap/test.pl
1415 $to cpan/Pod-Usage/*
1416 $to cpan/Pod-Parser/*
1417 $to cpan/IO-Compress/*
1418 $to cpan/HTTP-Tiny/lib/*
1419 $to cpan/Filter-Util-Call/filter-util.pl
1420 $to cpan/Digest-MD5/*
1421 $to cpan/Digest-SHA/*
1422 $to cpan/Test-Simple/*
1423 $to cpan/Pod-Parser/lib/*
1424 $to cpan/Test-Harness/*
1425 $to cpan/Scalar-List-Utils/*
1427 $to ext/Tie-Memoize/*
1430 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1437 # --- For lib/diagnostics.t with -Duseshrplib
1439 cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1446 $spitshell >>$Makefile <<'!NO!SUBS!'
1447 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1448 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1449 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1452 case "$targethost" in
1453 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1455 test check: test_prep
1460 *) $spitshell >>$Makefile <<!GROK!THIS!
1462 test check: test_prep
1463 $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1469 $spitshell >>$Makefile <<'!NO!SUBS!'
1470 test_tty test-tty: test_prep
1473 test_notty test-notty: test_prep
1478 case "${osname}${osvers}" in
1480 $spitshell >>$Makefile <<'!NO!SUBS!'
1481 # Targets for valgrind testing:
1483 test.valgrind check.valgrind: test_prep
1484 @echo "Checking usemymalloc='n' in config.sh..."
1485 @grep "^usemymalloc=" config.sh
1486 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1487 @echo "And of course you have to have valgrind..."
1488 $(VALGRIND) $(VG_TEST) || exit 1
1489 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1494 $spitshell >>$Makefile <<'!NO!SUBS!'
1496 # Can't depend on lib/Config.pm because that might be where miniperl
1498 minitest: $(MINIPERL_EXE)
1499 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1501 @echo "You may see some irrelevant test failures if you have been unable"
1502 @echo "to build lib/Config.pm, or the Unicode data files."
1504 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \
1505 && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t </dev/tty
1509 test_harness test-harness: test_prep
1510 TESTFILE=harness $(RUN_TESTS) choose
1512 test_harness_notty: test_prep
1513 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1515 test_reonly test-reonly: test_prep_reonly
1516 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1519 # Porting tests (well-formedness of pod, manifest, etc)
1521 test_porting test-porting: test_prep
1522 cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1524 # Handy way to run perlbug -ok without having to install and run the
1525 # installed perlbug. We don't re-run the tests here - we trust the user.
1526 # Please *don't* use this unless all tests pass.
1527 # If you want to report test failures, use "make nok" instead.
1529 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1532 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1535 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1538 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1540 okfilenack: utilities
1541 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1544 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1547 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1550 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1552 nokfilenack: utilities
1553 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1558 echo $(c) | tr ' ' $(TRNL) >.clist
1561 echo $(h) | tr ' ' $(TRNL) >.hlist
1565 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1570 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1572 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1573 # If this runs make out of memory, delete /usr/include lines.
1577 $rm -f $firstmakefile
1579 # Now do any special processing required before building.
1584 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1589 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1593 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1598 # ex: set ts=8 sts=4 sw=4 noet: