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
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.
37 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
41 linklibperl='$(LIBPERL)'
43 shrpldflags='$(LDDLFLAGS)'
45 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
46 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
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" `" ;;
56 pldlflags="$cccdlflags"
58 case "${osname}${osvers}" in
61 lddlflags="-dynamic -undefined warning -framework System \
62 -compatibility_version 1 -current_version $patchlevel \
63 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
66 shrpldflags="${ldflags} -dynamiclib \
67 -compatibility_version \
68 ${api_revision}.${api_version}.${api_subversion} \
70 ${revision}.${patchlevel}.${subversion} \
71 -install_name \$(shrpdir)/\$@"
74 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
75 linklibperl="-L. -lperl"
80 netbsd*|freebsd[234]*|openbsd*|dragonfly*|bitrig*)
81 linklibperl="-L. -lperl"
84 linklibperl="-L. -lperl"
85 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
90 shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
92 3*) shrpldflags="$shrpldflags -e _nostart"
94 *) shrpldflags="$shrpldflags -Wl,-bnoentry"
97 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
98 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
99 linklibperl_nonshr='-lperl_nonshr'
102 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
104 3*) shrpldflags="$shrpldflags -e _nostart"
106 *) shrpldflags="$shrpldflags -b noentry"
109 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
110 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
111 linklibperl_nonshr='-lperl_nonshr'
116 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
119 shrpldflags='-W l,XPLINK,dll'
120 linklibperl='libperl.x'
121 DPERL_EXTERNAL_GLOB=''
124 case "$ldlibpthname" in
132 eval "ldlibpthval=\"\$$ldlibpthname\""
134 case "$ldlibpthval" in
135 '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;;
136 *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;;
147 # If there is a pre-existing $libperl from a previous
148 # installation, Linux needs to use LD_PRELOAD to
149 # override the LD_LIBRARY_PATH setting. See the
150 # INSTALL file, under "Building a shared perl library".
151 # If there is no pre-existing $libperl, we don't need
152 # to do anything further.
153 if test -f $archlib/CORE/$libperl; then
155 cat <<'EOT' > preload
159 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
163 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
166 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
173 static_ldflags='CCCDLFLAGS='
177 : is Cwd static or dynamic
179 list_util_dep='$(PERL_EXE)'
180 for f in $dynamic_ext; do
182 Cwd) static_cwd='undef' ;;
183 List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext
187 : Prepare dependency lists for Makefile.
189 dynamic_ext_re="lib/auto/re/re.$dlext"
191 ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
193 for f in $dynamic_ext; do
194 : the dependency named here will never exist
195 base=`echo "$f" | sed 's/.*\///'`
196 this_target="lib/auto/$f/$base.$dlext"
197 dynamic_list="$dynamic_list $this_target"
199 : Parallel makes reveal that we have some interdependencies
201 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
202 $this_target: $list_util_dep" ;;
203 Unicode/Normalize) extra_dep="$extra_dep
204 $this_target: uni.data" ;;
209 for f in $static_ext; do
210 base=`echo "$f" | sed 's/.*\///'`
211 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
212 : Parallel makes reveal that we have some interdependencies
213 this_target="lib/auto/$f/$base\$(LIB_EXT)"
215 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
216 $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
217 Unicode/Normalize) extra_dep="$extra_dep
218 $this_target: uni.data" ;;
223 for f in $nonxs_ext; do
224 p=`echo "$f" | tr / -`
225 for d in ext dist cpan; do
226 if test -d $d/$p; then
227 nonxs_list="$nonxs_list $d/$p/pm_to_blib"
237 dtrace_h='perldtrace.h'
238 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
239 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)' \
240 && minidtrace_o='miniperldtrace$(OBJ_EXT)'
244 echo "Extracting $Makefile (with variable substitutions)"
245 $spitshell >$Makefile <<!GROK!THIS!
247 # This file is derived from Makefile.SH. Any changes made here will
248 # be lost the next time you run Configure.
249 # Makefile is used to generate $firstmakefile. The only difference
250 # is that $firstmakefile has the dependencies filled in at the end.
258 mallocsrc = $mallocsrc
259 mallocobj = $mallocobj
261 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
266 # The following are mentioned only to make metaconfig include the
267 # appropriate questions in Configure. If you want to change these,
268 # edit config.sh instead, or specify --man1dir=/wherever on
269 # installman commandline.
271 scriptdir = $scriptdir
272 shrpdir = $archlibexp/CORE
273 privlib = $installprivlib
279 # The following are used to build and install shared libraries for
281 LDDLFLAGS = $lddlflags
282 SHRPLDFLAGS = $shrpldflags
283 CCDLFLAGS = $ccdlflags
285 PLDLFLAGS = $pldlflags
287 LLIBPERL= $linklibperl
288 LLIBPERL_NONSHR= $linklibperl_nonshr
291 # Static targets are ordinarily built without CCCDLFLAGS. However,
292 # if building a shared libperl.so that might later be linked into
293 # another application, then it might be appropriate to also build static
294 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
296 STATIC_LDFLAGS = $static_ldflags
298 # The following is used to include the current directory in
299 # the dynamic loader path you are building a shared libperl.
302 # Sometimes running an executable is an adventure.
305 # When cross-compiling we want to use a (mini)perl built for the host, not the target
306 HOST_PERL = $hostperl
307 HOST_GENERATE = $hostgenerate
310 # These variables may need to be manually set for non-Unix systems.
318 # Macros to invoke a copy of miniperl during the build. Targets which
319 # are built using these macros should depend on \$(MINIPERL_EXE)
320 MINIPERL_EXE = miniperl\$(EXE_EXT)
321 MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
323 # Macros to invoke sort the MANIFEST during build
324 MANIFEST_SRT = MANIFEST.srt
328 case "$usecrosscompile$perl" in
330 $spitshell >>$Makefile <<!GROK!THIS!
331 # Macros to invoke a copy of our fully operational perl during the build.
332 PERL_EXE = perl\$(EXE_EXT)
333 RUN_PERL = \$(LDLIBPTH) \$(RUN) $perl\$(EXE_EXT)
337 $spitshell >>$Makefile <<!GROK!THIS!
338 # Macros to invoke a copy of our fully operational perl during the build.
339 PERL_EXE = perl\$(EXE_EXT)
340 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib
345 $spitshell >>$Makefile <<!GROK!THIS!
346 # Macros to run our tests
347 RUN_TESTS = \$(LDLIBPTH) ./runtests
349 dynamic_ext = $dynamic_list
350 dynamic_ext_re = $dynamic_ext_re
351 static_ext = $static_list
352 nonxs_ext = $nonxs_list
353 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
354 DYNALOADER = DynaLoader\$(OBJ_EXT)
356 libs = $perllibs $cryptlib
358 public = \$(PERL_EXE) utilities
360 shellflags = $shellflags
362 # The /dev/tty or the moral equivalent.
365 # This is set to MAKE=$make if your $make command doesn't
369 # Mention $gmake here so it gets probed for by Configure.
375 $spitshell >>$Makefile <<!GROK!THIS!
376 # If you're going to use valgrind and it can't be invoked as plain valgrind
377 # then you'll need to change this, or override it on the make command line.
379 VG_TEST ?= ./perl -e 1 2>/dev/null
385 $spitshell >>$Makefile <<!GROK!THIS!
389 MINIDTRACE_O = $minidtrace_o
391 FIRSTMAKEFILE = $firstmakefile
393 # Any special object files needed by this architecture, e.g. os2/os2.obj
396 .SUFFIXES: .c \$(OBJ_EXT) .i .s
401 # how to tr(anslate) newlines
408 INSTALLPREFIXEXP = $prefix
411 # not used by Makefile but by installperl;
412 # mentioned here so that metaconfig picks these up
416 case "${osname}:${osvers}" in
418 $spitshell >>$Makefile <<EOF
420 # Your locales are broken (osname $osname, osvers $osvers)
421 # and to avoid the numerous
422 # perl: warning: Setting locale failed.
423 # warnings during the build process we reset the locale variables.
432 ## In the following dollars and backticks do not need the extra backslash.
433 $spitshell >>$Makefile <<'!NO!SUBS!'
435 CCCMD = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
437 CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
439 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
440 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
442 CONFIGPOD = lib/Config.pod
448 echo $@ | sed -e s/\\\.SH//g -e s/_/./g
451 SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH'
452 shextract=`SH_to_target $SH`
454 ## In the following dollars and backticks do not need the extra backslash.
455 $spitshell >>$Makefile <<!GROK!THIS!
457 private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
459 # Files to be built with variable substitution before miniperl
463 shextract = $shextract
466 ## In the following dollars and backticks do not need the extra backslash.
467 $spitshell >>$Makefile <<'!NO!SUBS!'
469 addedbyconf = UU $(shextract) pstruct
471 # Unicode data files generated by mktables
472 unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
473 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
474 lib/unicore/UCD.pl lib/unicore/Name.pm \
475 lib/unicore/Heavy.pl lib/unicore/mktables.lst
477 # Directories of Unicode data files generated by mktables
478 unidatadirs = lib/unicore/To lib/unicore/lib
480 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
481 h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
482 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
483 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
484 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
485 h6 = charclass_invlists.h
486 h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
488 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
489 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
490 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
491 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c dquote.c time64.c
494 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
496 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
497 obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT)
498 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)
499 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)
500 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)
502 minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
503 mini_obj = $(minindt_obj) $(MINIDTRACE_O)
504 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
505 obj = $(ndt_obj) $(DTRACE_O)
507 perltoc_pod_prereqs = extra.pods pod/perl5233delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
508 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
509 generated_headers = uudmap.h bitcount.h mg_data.h
517 -errchk=parentheses \
521 -erroff=E_ASSIGN_NARROW_CONV \
522 -erroff=E_BAD_PTR_CAST \
523 -erroff=E_BAD_PTR_CAST_ALIGN \
524 -erroff=E_BAD_PTR_INT_COMBINATION \
525 -erroff=E_BAD_SIGN_EXTEND \
526 -erroff=E_BLOCK_DECL_UNUSED \
527 -erroff=E_CASE_FALLTHRU \
528 -erroff=E_CONST_EXPR \
529 -erroff=E_CONSTANT_CONDITION \
530 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
531 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
532 -erroff=E_EXPR_NULL_EFFECT \
533 -erroff=E_FALSE_LOGICAL_EXPR \
534 -erroff=E_INCL_NUSD \
535 -erroff=E_LOOP_EMPTY \
536 -erroff=E_MAIN_PARAM \
537 -erroff=E_POINTER_TO_OBJECT \
538 -erroff=E_PTRDIFF_OVERFLOW \
539 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
540 -erroff=E_STATIC_UNUSED \
541 -erroff=E_TRUE_LOGICAL_EXPR
544 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
545 -D__builtin_va_list=va_list \
546 -Dsigjmp_buf=jmp_buf \
570 @echo `$(CCCMD)` $(PLDLFLAGS) $*.c
571 @`$(CCCMD)` $(PLDLFLAGS) $*.c
573 .c.i: perl.h config.h
574 @echo `$(CCCMDSRC)` -E $*.c \> $*.i
575 @`$(CCCMDSRC)` -E $*.c > $*.i
577 .c.s: perl.h config.h
578 @echo `$(CCCMDSRC)` -S $*.c
579 @`$(CCCMDSRC)` -S $*.c
581 all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make $(MANIFEST_SRT)
583 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
585 $(MANIFEST_SRT): MANIFEST $(PERL_EXE)
586 @$(RUN_PERL) Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
587 $(RUN_PERL) Porting/manisort -q -o MANIFEST; sh -c true)
588 @touch $(MANIFEST_SRT)
590 .PHONY: all utilities
592 # Both git_version.h and lib/Config_git.pl are built
593 # by make_patchnum.pl.
594 git_version.h: lib/Config_git.pl
596 lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
597 $(MINIPERL) make_patchnum.pl
599 # make sure that we recompile perl.c if the git version changes
600 perl$(OBJ_EXT): git_version.h
604 # Making utilities requires Cwd. If we have dynamic
605 # loading, we only need miniperl and Cwd.$dlext. If we have static
606 # loading, we need to build perl first.
607 case "$usedl$static_cwd" in
609 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
612 util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
614 *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
618 $spitshell >>$Makefile <<!GROK!THIS!
619 utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
620 \$(MINIPERL) -Ilib utils/Makefile.PL
622 utilities: utils/Makefile $util_deps
623 @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
627 $spitshell >>$Makefile <<'!NO!SUBS!'
629 # This is now done by installman only if you actually want the man pages.
630 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
632 # Phony target to force checking subdirectories.
633 # Apparently some makes require an action for the FORCE target.
639 for file in op perl; do
640 if $issymlink $file.c; then
641 $spitshell >>$Makefile <<!GROK!THIS!
643 # We do a copy of the $file.c instead of a symlink because gcc gets huffy
644 # if we have a symlink forest to another disk (it complains about too many
645 # levels of symbolic links, even if we have only two)
647 ${file}mini.c: $file.c
648 \$(RMS) ${file}mini.c
649 \$(CPS) ${file}.c ${file}mini.c
652 $spitshell >>$Makefile <<!GROK!THIS!
654 ${file}mini.c: $file.c
655 \$(RMS) ${file}mini.c
656 \$(LNS) ${file}.c ${file}mini.c
660 $spitshell >>$Makefile <<!GROK!THIS!
662 ${file}mini\$(OBJ_EXT): ${file}mini.c
663 echo @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
664 @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
668 $spitshell >>$Makefile <<'!NO!SUBS!'
670 globals$(OBJ_EXT): $(generated_headers)
672 uudmap.h mg_data.h: bitcount.h
674 generate_uudmap$(OBJ_EXT): mg_raw.h
678 # If hostgerenate isn't defined, then we have to build
679 # generate_uudmap and run it. This can potentially mean running
680 # it on the target system if we're cross-compiling.
681 # If it is defined, then we just run it locally.
682 case "$hostgenerate" in
684 $spitshell >>$Makefile <<!GROK!THIS!
685 bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
686 $run ./generate_uudmap\$(HOST_EXE_EXT) \$(generated_headers)
687 -@for f in \$(generated_headers); do \\
693 $spitshell >>$Makefile <<'!NO!SUBS!'
694 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
695 $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
700 $spitshell >>$Makefile <<'!NO!SUBS!'
701 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
702 ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
704 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
705 -@rm generate_uudmap$(HOST_EXE_EXT)
706 $(LNS) $(HOST_GENERATE) generate_uudmap$(HOST_EXE_EXT)
713 $spitshell >>$Makefile <<'!NO!SUBS!'
714 perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
715 $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
717 # The file ext.libs is a list of libraries that must be linked in
718 # for static extensions, e.g. -lm -lgdbm, etc. The individual
719 # static extension Makefile's add to it.
720 ext.libs: $(static_ext)
721 -@test -f ext.libs || touch ext.libs
725 # How to build libperl. This is still rather convoluted.
726 # Load up custom Makefile.SH fragment for shared loading and executables:
729 Makefile_s="$osname/Makefile.SHs"
735 $spitshell >>$Makefile <<!GROK!THIS!
737 # In AIX we need to change this for building Perl itself from
738 # its earlier definition (which is for building external
739 # extensions *after* Perl has been built and installed)
740 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
743 case "$useshrplib" in
745 $spitshell >>$Makefile <<'!NO!SUBS!'
747 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
748 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
750 $(LIBPERL_NONSHR): $(obj)
751 $(RMS) $(LIBPERL_NONSHR)
752 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
754 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
755 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
756 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
758 MINIPERLEXP = $(MINIPERL_NONSHR)
760 LIBPERLEXPORT = perl.exp
766 $spitshell >>$Makefile <<'!NO!SUBS!'
767 MINIPERLEXP = $(MINIPERL_EXE)
769 PERLEXPORT = perl.exp
774 $spitshell >>$Makefile <<'!NO!SUBS!'
775 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
776 ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
781 $spitshell >>$Makefile <<'!NO!SUBS!'
782 MINIPERLEXP = miniperl
784 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
785 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
790 $spitshell >>$Makefile <<'!NO!SUBS!'
791 cygwin.c: cygwin/cygwin.c
792 $(LNS) cygwin/cygwin.c
794 LIBPERL_NONSHR = libperl$(LIB_EXT)
796 $(LIBPERL_NONSHR): $(obj)
797 $(RMS) $(LIBPERL_NONSHR)
798 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
804 if test -s $Makefile_s ; then
806 $spitshell >>$Makefile <<!GROK!THIS!
808 Makefile: $Makefile_s
813 $spitshell >>$Makefile <<'!NO!SUBS!'
814 # dtrace dicards const qualifiers from arguments, put them back
815 $(DTRACE_H): perldtrace.d
816 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
817 sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
818 $(RMS) $(DTRACE_H).in
820 mydtrace.h: $(DTRACE_H)
827 $spitshell >>$Makefile <<'!NO!SUBS!'
828 $(DTRACE_O): perldtrace.d $(ndt_obj)
829 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
831 $(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
832 $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
837 $spitshell >>$Makefile <<'!NO!SUBS!'
838 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
840 case "$useshrplib" in
842 $spitshell >>$Makefile <<'!NO!SUBS!'
844 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
848 $spitshell >>$Makefile <<'!NO!SUBS!'
849 rm -f libperl$(OBJ_EXT)
850 mv $@ libperl$(OBJ_EXT)
851 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
857 $spitshell >>$Makefile <<'!NO!SUBS!'
859 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
860 @$(ranlib) $(LIBPERL)
864 $spitshell >>$Makefile <<'!NO!SUBS!'
866 # How to build executables.
868 # The $& notation tells Sequent machines that it can do a parallel make,
869 # and is harmless otherwise.
870 # The miniperl -w -MExporter line is a basic cheap test to catch errors
871 # before make goes on to run preplibrary and then MakeMaker on extensions.
872 # This is very handy because later errors are often caused by miniperl
873 # build problems but that's not obvious to the novice.
874 # The Module used here must not depend on Config or any extensions.
876 # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
877 # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
878 # miniperl to exist first permits us to
879 # a) have one rule generate both miniperl and lib/buildcustomize.pl
880 # (so that lib/buildcustomize.pl is always available. This simplifies things)
881 # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
883 $(MINIPERL_EXE): lib/buildcustomize.pl
887 case "${osname}${osvers}" in
889 $spitshell >>$Makefile <<'!NO!SUBS!'
890 lib/buildcustomize.pl: $& $(mini_obj)
891 $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
892 $(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'
893 $(MINIPERL) -f write_buildcustomize.pl
897 $spitshell >>$Makefile <<'!NO!SUBS!'
898 lib/buildcustomize.pl: $& $(mini_obj) write ldcustomize.pl
899 $(CC) -o $(MINIPERL_EXE) $(mini_obj libs)
900 $(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'
901 $(MINIPERL) -f write_buildcustomize.pl
907 *) case "$ldflags" in
908 *"-flat_namespace"*) ;;
909 *) # to allow opmini.o to override stuff in libperl.dylib
910 $spitshell >>$Makefile <<!NO!SUBS!
911 NAMESPACEFLAGS = -force_flat_namespace
917 $spitshell >>$Makefile <<'!NO!SUBS!'
918 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
920 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -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
927 if test "X$hostperl" != X; then
928 $spitshell >>$Makefile <<!GROK!THIS!
929 lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl
931 -@rm \$(MINIPERL_EXE)
932 \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
933 \$(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'
934 \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
937 $spitshell >>$Makefile <<'!NO!SUBS!'
938 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
940 $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
942 $(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'
943 $(MINIPERL) -f write_buildcustomize.pl
949 $spitshell >>$Makefile <<'!NO!SUBS!'
951 $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
956 os390) $spitshell >>$Makefile <<'!NO!SUBS!'
957 $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(LLIBPERL) $(static_ext) `cat ext.libs` $(libs)
960 *) $spitshell >>$Makefile <<'!NO!SUBS!'
961 $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
966 $spitshell >>$Makefile <<'!NO!SUBS!'
968 # Microperl. This is just a convenience thing if one happens to
969 # build also the full Perl and therefore the real big Makefile:
970 # usually one should manually explicitly issue the below command.
974 $(MAKE) -f Makefile.micro
980 # Some environment have no system(), which mkpport uses.
981 # Let's try running the commands with shell.
984 $spitshell >>$Makefile <<!GROK!THIS!
986 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
987 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
988 (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
994 $spitshell >>$Makefile <<'!NO!SUBS!'
996 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
1003 $spitshell >>$Makefile <<'!NO!SUBS!'
1006 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
1008 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
1010 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
1011 $(MINIPERL) configpm
1013 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
1015 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
1016 $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
1017 # Commented out so always runs, mktables looks at far more files than we
1018 # can in this makefile to decide if needs to run or not
1021 # $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
1022 # But also this ensures that all extensions are built before we try to scan
1023 # them, which picks up Devel::PPPort's documentation.
1024 pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
1025 $(RUN_PERL) -f pod/buildtoc -q
1027 pod/perlapi.pod: pod/perlintern.pod
1029 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
1030 $(MINIPERL) autodoc.pl
1032 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1033 $(MINIPERL) pod/perlmodlib.PL -q
1035 pod/perl5233delta.pod: pod/perldelta.pod
1036 $(RMS) pod/perl5233delta.pod
1037 $(LNS) perldelta.pod pod/perl5233delta.pod
1039 extra.pods: $(MINIPERL_EXE)
1040 -@test ! -f extra.pods || rm -f `cat extra.pods`
1042 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1043 nx=`echo $$x | sed -e "s/README\.//"`; \
1044 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1045 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1048 extras.make: $(PERL_EXE)
1049 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1051 extras.test: $(PERL_EXE)
1052 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1054 extras.install: $(PERL_EXE)
1055 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1057 .PHONY: install install-strip install-all install-verbose install-silent \
1058 no-install install.perl install.man install.html
1060 # Set this to an empty string to avoid an attempt of rebuild before install
1061 INSTALL_DEPENDENCE = all
1063 no_install no-install: install-notify
1065 install: install-all
1069 for name in all notify silent strip verbose; do
1071 flags=`echo $flags | sed -e 's/--all//'`
1072 if test "X$hostperl" != X; then
1073 $spitshell >>$Makefile <<EOT
1075 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1076 \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1077 \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1080 $spitshell >>$Makefile <<EOT
1082 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1083 \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1084 \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1088 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
1091 if test "X$hostperl" != X; then
1092 $spitshell >>$Makefile <<'!NO!SUBS!'
1093 install.perl: $(INSTALL_DEPENDENCE) installperl
1094 $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1095 -@test ! -s extras.lst || $(MAKE) extras.install
1097 install.man: all installman
1098 $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1100 # XXX Experimental. Hardwired values, but useful for testing.
1101 # Eventually Configure could ask for some of these values.
1102 install.html: all installhtml
1103 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1104 $(HOST_PERL) installhtml \
1105 --podroot=. --podpath=. --recurse \
1106 --htmldir=$(privlib)/html \
1107 --htmlroot=$(privlib)/html \
1108 --splithead=pod/perlipc \
1109 --splititem=pod/perlfunc \
1110 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1114 $spitshell >>$Makefile <<'!NO!SUBS!'
1115 install.perl: $(INSTALL_DEPENDENCE) installperl
1116 $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1117 -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1119 install.man: all installman
1120 $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1122 # XXX Experimental. Hardwired values, but useful for testing.
1123 # Eventually Configure could ask for some of these values.
1124 install.html: all installhtml
1125 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1126 $(RUN_PERL) installhtml \
1127 --podroot=. --podpath=. --recurse \
1128 --htmldir=$(privlib)/html \
1129 --htmlroot=$(privlib)/html \
1130 --splithead=pod/perlipc \
1131 --splititem=pod/perlfunc \
1132 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1137 $spitshell >>$Makefile <<'!NO!SUBS!'
1139 # I now supply perly.c with the kits, so the following section is
1140 # used only if you force bison to run by saying
1142 # You normally shouldn't remake perly.[ch].
1146 run_byacc run-byacc:
1147 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1149 # this outputs perly.h, perly.act and perly.tab
1150 regen_perly regen-perly:
1153 # We don't want to regenerate perly.c and perly.h, but they might
1154 # appear out-of-date after a patch is applied or a new distribution is
1162 SYM = globvar.sym perlio.sym
1164 SYMH = perlvars.h intrpvar.h
1168 # The following files are generated automatically
1169 # embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c
1170 # opcode.pl: opcode.h opnames.h pp_proto.h
1171 # regcomp.pl: regnodes.h
1172 # warnings.pl: warnings.h lib/warnings.pm
1173 # feature.pl: feature.h lib/feature.pm
1174 # The correct versions should be already supplied with the perl kit,
1175 # in case you don't have perl available.
1176 # To force them to be regenerated, run
1178 # with your existing copy of perl
1179 # (make regen_headers is kept for backwards compatibility)
1181 AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
1182 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
1183 lib/feature.pm feature.h
1185 .PHONY: regen_headers regen_all
1189 -perl regen/uconfig_h.pl
1191 regen_headers regen-headers: FORCE
1193 -perl regen/uconfig_h.pl -v
1195 regen_meta regen-meta: META.yml META.json
1198 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1201 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1204 regen_all regen-all: regen regen_meta
1206 .PHONY: manisort manicheck
1209 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1210 perl Porting/manisort -q -o MANIFEST; sh -c true)
1213 perl Porting/manicheck
1216 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1217 # automatically get built. There should ordinarily be no need to change
1218 # any of this part of makefile.
1220 # The dummy dependency is a place holder in case $(dynamic_ext) or
1221 # $(static_ext) is empty.
1223 # DynaLoader may be needed for extensions that use Makefile.PL.
1225 $(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1226 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1228 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1229 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1231 s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1232 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1234 n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1235 $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL)
1238 $spitshell >>$Makefile <<EOF
1242 $spitshell >>$Makefile <<'!NO!SUBS!'
1246 @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1248 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1249 realclean _realcleaner clobber _clobber \
1250 distclean veryclean _verycleaner
1254 realclean: _realcleaner _mopup
1255 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1258 -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1261 rm -f config.sh cppstdin Policy.sh extras.lst
1262 rm -f $(MANIFEST_SRT)
1264 clobber: _realcleaner _mopup _clobber
1268 # Like distclean but also removes emacs backups and *.orig.
1269 veryclean: _verycleaner _mopup _clobber
1270 -@rm -f Obsolete Wanted
1272 # Do not 'make _mopup' directly.
1274 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1276 -@test -f extra.pods && rm -f `cat extra.pods`
1277 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1278 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1279 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1281 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1282 -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1283 -rm -f config.arch config.over $(DTRACE_H)
1286 -cd os2; rm -f Makefile
1287 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1288 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1289 -@if test -f $(MINIPERL_EXE) ; then \
1290 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1291 $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE="$(MAKE)" ; \
1296 rm -f realclean.sh veryclean.sh
1297 -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1299 # Dear POSIX, thanks for making the default to xargs to be
1300 # run once if nothhing is passed in. It is such a great help.
1302 # Some systems do not support "?", so keep these files separate.
1304 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1305 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1306 rm -f t/$(PERL_EXE) t/rantests
1308 rm -rf $(addedbyconf)
1309 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1311 rm -rf $(unidatafiles) $(unidatadirs)
1313 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1314 rm -f h2ph.man pstruct
1318 rm -rf pod/perlfunc pod/perlipc
1320 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1321 -rmdir lib/version lib/threads lib/encoding lib/autodie/exception
1322 -rmdir lib/autodie/Scope lib/autodie lib/XS lib/Win32API lib/VMS
1323 -rmdir lib/Unicode/Collate/Locale lib/Unicode/Collate/CJK
1324 -rmdir lib/Unicode/Collate lib/Tie/Hash lib/Thread lib/Text
1325 -rmdir lib/Test/use lib/Test/Tester lib/Test/Builder/Tester
1326 -rmdir lib/Test/Builder/IO lib/Test/Builder lib/Test lib/Term
1327 -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1328 -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1329 -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1330 -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1331 -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Sub
1332 -rmdir lib/Search lib/Scalar lib/Pod/Text lib/Pod/Simple
1333 -rmdir lib/Pod/Perldoc lib/PerlIO/via lib/PerlIO lib/Perl
1334 -rmdir lib/Parse/CPAN lib/Parse lib/Params lib/Net/FTP lib/Module/Load
1335 -rmdir lib/Module/CoreList lib/Module lib/Memoize lib/Math/BigInt
1336 -rmdir lib/Math/BigFloat lib/Math lib/MIME lib/Locale/Maketext
1337 -rmdir lib/Locale/Codes lib/Locale lib/List/Util lib/List lib/JSON/PP
1338 -rmdir lib/JSON lib/IPC lib/IO/Uncompress/Adapter lib/IO/Uncompress
1339 -rmdir lib/IO/Socket lib/IO/Compress/Zlib lib/IO/Compress/Zip
1340 -rmdir lib/IO/Compress/Gzip lib/IO/Compress/Base
1341 -rmdir lib/IO/Compress/Adapter lib/IO/Compress lib/IO
1342 -rmdir lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash lib/HTTP
1343 -rmdir lib/Filter/Util lib/Filter lib/File/Spec lib/ExtUtils/Typemaps
1344 -rmdir lib/ExtUtils/ParseXS lib/ExtUtils/MakeMaker/version
1345 -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1346 -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1347 -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1348 -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1349 -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1350 -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1351 -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1352 -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Plugin
1353 -rmdir lib/CPAN/Meta/History lib/CPAN/Meta lib/CPAN/LWP
1354 -rmdir lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP lib/CPAN/Exception
1355 -rmdir lib/CPAN/API lib/CPAN lib/Attribute lib/Archive/Tar lib/Archive
1356 -rmdir lib/App/Prove/State/Result lib/App/Prove/State lib/App/Prove
1357 -rmdir lib/App lib/Amiga
1360 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1361 @$(LDLIBPTH) $(MAKE) _cleaner2
1364 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1365 @$(LDLIBPTH) $(MAKE) _cleaner2
1366 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1371 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1375 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1377 # Need to unset during recursion to go out of loop.
1378 # The README below ensures that the dependency list is never empty and
1379 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1381 MAKEDEPEND = Makefile makedepend
1383 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1384 $(MAKE) depend MAKEDEPEND=
1388 file=`SH_to_target $f`
1389 $spitshell >>$Makefile <<!GROK!THIS!
1396 $spitshell >>$Makefile <<'!NO!SUBS!'
1399 depend: makedepend $(DTRACE_H) $(generated_headers)
1400 sh ./makedepend MAKE="$(MAKE)" cflags
1402 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1403 test_prep_reonly test_tty test-tty test_notty test-notty \
1404 test_harness test_harness_notty minitest test-reonly _test
1407 echo >&2 The _test target is deprecated. Please upgrade your smoker
1410 # Cannot delegate rebuilding of t/perl to make
1411 # to allow interlaced test and minitest
1413 # Architecture-neutral stuff:
1415 test_prep_pre: preplibrary utilities $(nonxs_ext)
1418 case "$targethost" in
1419 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1420 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1421 $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods)
1422 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1426 *) $spitshell >>$Makefile <<!GROK!THIS!
1427 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1428 \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1434 $to win32/FindExt.pm
1442 $to cpan/Archive-Tar/*
1443 $to cpan/Module-Metadata/*
1444 $to cpan/Term-Cap/test.pl
1445 $to cpan/Pod-Usage/*
1446 $to cpan/Pod-Parser/*
1447 $to cpan/IO-Compress/*
1448 $to cpan/HTTP-Tiny/lib/*
1449 $to cpan/Filter-Util-Call/filter-util.pl
1450 $to cpan/Digest-MD5/*
1451 $to cpan/Digest-SHA/*
1452 $to cpan/Test-Simple/*
1453 $to cpan/Pod-Parser/lib/*
1454 $to cpan/Test-Harness/*
1455 $to cpan/Scalar-List-Utils/*
1457 $to ext/Tie-Memoize/*
1460 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1465 # --- For t/porting/customized.t
1470 # --- For lib/diagnostics.t with -Duseshrplib
1472 cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1479 $spitshell >>$Makefile <<'!NO!SUBS!'
1480 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1481 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1482 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1485 case "$targethost" in
1486 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1488 test check: test_prep
1493 *) $spitshell >>$Makefile <<!GROK!THIS!
1495 test check: test_prep
1496 $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1502 $spitshell >>$Makefile <<'!NO!SUBS!'
1503 test_tty test-tty: test_prep
1506 test_notty test-notty: test_prep
1511 case "${osname}${osvers}" in
1513 $spitshell >>$Makefile <<'!NO!SUBS!'
1514 # Targets for valgrind testing:
1516 test.valgrind check.valgrind: test_prep
1517 @echo "Checking usemymalloc='n' in config.sh..."
1518 @grep "^usemymalloc=" config.sh
1519 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1520 @echo "And of course you have to have valgrind..."
1521 $(VALGRIND) $(VG_TEST) || exit 1
1522 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1527 $spitshell >>$Makefile <<'!NO!SUBS!'
1529 # minitest can't depend on lib/Config.pm because that might be where miniperl
1532 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1534 @echo "You may see some irrelevant test failures if you have been unable"
1535 @echo "to build lib/Config.pm, or the Unicode data files."
1537 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE))
1539 MINITEST_TESTS = base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t
1541 minitest: $(MINIPERL_EXE) minitest_prep
1542 - cd t && $(RUN_PERL) TEST $(MINITEST_TESTS) <$(devtty)
1544 minitest-notty minitest_notty: $(MINIPERL_EXE) minitest_prep
1545 - cd t && PERL_SKIP_TTY_TEST=1 $(RUN_PERL) TEST $(MINITEST_TESTS)
1549 test_harness test-harness: test_prep
1550 TESTFILE=harness $(RUN_TESTS) choose
1552 test_harness_notty: test_prep
1553 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1555 test_reonly test-reonly: test_prep_reonly
1556 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1559 # Porting tests (well-formedness of pod, manifest, etc)
1561 test_porting test-porting: test_prep
1562 cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1564 # Handy way to run perlbug -ok without having to install and run the
1565 # installed perlbug. We don't re-run the tests here - we trust the user.
1566 # Please *don't* use this unless all tests pass.
1567 # If you want to report test failures, use "make nok" instead.
1569 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1572 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1575 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1578 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1580 okfilenack: utilities
1581 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1584 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1587 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1590 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1592 nokfilenack: utilities
1593 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1598 echo $(c) | tr ' ' $(TRNL) >.clist
1601 echo $(h) | tr ' ' $(TRNL) >.hlist
1605 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1610 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1612 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1613 # If this runs make out of memory, delete /usr/include lines.
1617 $rm -f $firstmakefile
1619 # Now do any special processing required before building.
1624 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1629 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1633 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1638 # ex: set ts=8 sts=4 sw=4 noet: