1 case $PERL_CONFIG_SH in
6 echo "Can't find config.sh."; exit 1
17 # if cross-compilation, the Makefile named accordingly
18 Makefile=Makefile-cross-$CROSS_NAME
19 . Cross/config-${CROSS_NAME}.sh
23 : This forces SH files to create target in same directory as SH file.
24 : This is so that make depend always knows where to find SH derivatives.
26 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
29 linklibperl='$(LIBPERL)'
31 shrpldflags='$(LDDLFLAGS)'
33 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
34 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
37 # Prefix all runs of 'miniperl' and 'perl' with
38 # $ldlibpth so that ./perl finds *this* shared libperl.
39 case "$LD_LIBRARY_PATH" in
41 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
43 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
46 pldlflags="$cccdlflags"
48 case "${osname}${osvers}" in
51 lddlflags="-dynamic -undefined warning -framework System \
52 -compatibility_version 1 -current_version $patchlevel \
53 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
56 shrpldflags="${ldflags} -dynamiclib \
57 -compatibility_version \
58 ${api_revision}.${api_version}.${api_subversion} \
60 ${revision}.${patchlevel}.${subversion} \
61 -install_name \$(shrpdir)/\$@"
64 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
65 linklibperl="-L. -lperl"
70 netbsd*|freebsd[234]*|openbsd*|dragonfly*)
71 linklibperl="-L. -lperl"
74 linklibperl="-L. -lperl"
75 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
80 shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
82 3*) shrpldflags="$shrpldflags -e _nostart"
84 *) shrpldflags="$shrpldflags -Wl,-bnoentry"
87 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
88 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
89 linklibperl_nonshr='-lperl_nonshr'
92 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
94 3*) shrpldflags="$shrpldflags -e _nostart"
96 *) shrpldflags="$shrpldflags -b noentry"
99 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
100 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
101 linklibperl_nonshr='-lperl_nonshr'
106 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
109 shrpldflags='-W l,XPLINK,dll'
110 linklibperl='libperl.x'
111 DPERL_EXTERNAL_GLOB=''
114 case "$ldlibpthname" in
122 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
125 # Strip off any trailing :'s
126 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
132 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
137 # If there is a pre-existing $libperl from a previous
138 # installation, Linux needs to use LD_PRELOAD to
139 # override the LD_LIBRARY_PATH setting. See the
140 # INSTALL file, under "Building a shared perl library".
141 # If there is no pre-existing $libperl, we don't need
142 # to do anything further.
143 if test -f $archlib/CORE/$libperl; then
145 cat <<'EOT' > preload
149 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
153 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
156 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
163 static_ldflags='CCCDLFLAGS='
167 : Prepare dependency lists for Makefile.
169 dynamic_ext_re="lib/auto/re/re.$dlext"
171 for f in $dynamic_ext; do
172 : the dependency named here will never exist
173 base=`echo "$f" | sed 's/.*\///'`
174 this_target="lib/auto/$f/$base.$dlext"
175 dynamic_list="$dynamic_list $this_target"
177 : Parallel makes reveal that we have some interdependencies
179 Encode) extra_dep="$extra_dep
180 $this_target: lib/auto/Cwd/Cwd.$dlext" ;;
181 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
182 $this_target: lib/auto/List/Util/Util.$dlext" ;;
183 Unicode/Normalize) extra_dep="$extra_dep
184 $this_target: uni.data" ;;
185 Text/ParseWords) extra_dep="$extra_dep
186 $this_target: lib/auto/Scalar/Util.$dlext" ;;
187 SDBM_File) extra_dep="$extra_dep
188 $this_target: lib/auto/Cwd/Cwd.$dlext" ;;
193 for f in $static_ext; do
194 base=`echo "$f" | sed 's/.*\///'`
195 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
196 : Parallel makes reveal that we have some interdependencies
197 this_target="lib/auto/$f/$base\$(LIB_EXT)"
199 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
200 $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
201 Unicode/Normalize) extra_dep="$extra_dep
202 $this_target: uni.data" ;;
207 for f in $nonxs_ext; do
208 p=`echo "$f" | tr / -`
209 for d in ext dist cpan; do
210 if test -d $d/$p; then
211 nonxs_list="$nonxs_list $d/$p/pm_to_blib"
220 dtrace_h='perldtrace.h'
221 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
222 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)'
226 echo "Extracting $Makefile (with variable substitutions)"
227 $spitshell >$Makefile <<!GROK!THIS!
229 # This file is derived from Makefile.SH. Any changes made here will
230 # be lost the next time you run Configure.
231 # Makefile is used to generate $firstmakefile. The only difference
232 # is that $firstmakefile has the dependencies filled in at the end.
240 mallocsrc = $mallocsrc
241 mallocobj = $mallocobj
245 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
250 # The following are mentioned only to make metaconfig include the
251 # appropriate questions in Configure. If you want to change these,
252 # edit config.sh instead, or specify --man1dir=/wherever on
253 # installman commandline.
255 scriptdir = $scriptdir
256 shrpdir = $archlibexp/CORE
257 privlib = $installprivlib
263 # The following are used to build and install shared libraries for
265 LDDLFLAGS = $lddlflags
266 SHRPLDFLAGS = $shrpldflags
267 CCDLFLAGS = $ccdlflags
269 PLDLFLAGS = $pldlflags
271 LLIBPERL= $linklibperl
272 LLIBPERL_NONSHR= $linklibperl_nonshr
275 # Static targets are ordinarily built without CCCDLFLAGS. However,
276 # if building a shared libperl.so that might later be linked into
277 # another application, then it might be appropriate to also build static
278 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
280 STATIC_LDFLAGS = $static_ldflags
282 # The following is used to include the current directory in
283 # the dynamic loader path you are building a shared libperl.
286 # Sometimes running an executable is an adventure.
289 # These variables may need to be manually set for non-Unix systems.
297 # Macros to invoke a copy of miniperl during the build. Targets which
298 # are built using these macros should depend on \$(MINIPERL_EXE)
299 MINIPERL_EXE = miniperl\$(EXE_EXT)
300 MINIPERL = \$(LDLIBPTH) \$(RUN) ./miniperl\$(EXE_EXT) -Ilib
302 # Macros to invoke a copy of our fully operational perl during the build.
303 PERL_EXE = perl\$(EXE_EXT)
304 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT)
306 # Macros to run our tests
307 RUN_TESTS = \$(LDLIBPTH) ./runtests
309 dynamic_ext = $dynamic_list
310 dynamic_ext_re = $dynamic_ext_re
311 static_ext = $static_list
312 nonxs_ext = $nonxs_list
313 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
314 DYNALOADER = DynaLoader\$(OBJ_EXT)
316 libs = $perllibs $cryptlib
318 public = \$(PERL_EXE) utilities translators
320 shellflags = $shellflags
322 # This is set to MAKE=$make if your $make command doesn't
326 # Mention $gmake here so it gets probed for by Configure.
328 # If you're going to use valgrind and it can't be invoked as plain valgrind
329 # then you'll need to change this, or override it on the make command line.
336 FIRSTMAKEFILE = $firstmakefile
338 # Any special object files needed by this architecture, e.g. os2/os2.obj
341 .SUFFIXES: .c \$(OBJ_EXT) .i .s
346 # how to tr(anslate) newlines
353 INSTALLPREFIXEXP = $prefix
356 # not used by Makefile but by installperl;
357 # mentioned here so that metaconfig picks these up
361 case "${osname}:${osvers}" in
363 $spitshell >>$Makefile <<EOF
365 # Your locales are broken (osname $osname, osvers $osvers)
366 # and to avoid the numerous
367 # perl: warning: Setting locale failed.
368 # warnings during the build process we reset the locale variables.
379 ## In the following dollars and backticks do not need the extra backslash.
380 $spitshell >>$Makefile <<'!NO!SUBS!'
382 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
384 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
386 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
387 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
389 CONFIGPOD = lib/Config.pod
395 # if cross-compilation
396 $spitshell >>$Makefile <<!GROK!THIS!
397 CROSS_NAME = $CROSS_NAME
398 CROSS_LIB = xlib/$CROSS_NAME
400 CCCMD = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$@\` -I\$(CROSS_LIB)
401 CCCMDSRC = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$<\` -I\$(CROSS_LIB)
402 CONFIGPM = xlib/\$(CROSS_NAME)/Config.pm
403 CONFIGPOD = xlib/\$(CROSS_NAME)/Config.pod
406 xconfig.h: config_h.SH Cross/config-\$(CROSS_NAME).sh
407 CONFIG_SH=Cross/config-\$(CROSS_NAME).sh CONFIG_H=xconfig.h \$(SHELL) config_h.SH
408 #TODO \$(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib -MCross=\$(CROSS_NAME) config_h.PL "INST_VER=\$(INST_VER)" "CORE_DIR=\$(CROSS_LIB)" "CONFIG_H=xconfig.h"
409 cp xconfig.h \$(CROSS_LIB)/
410 cp xconfig.h \$(CROSS_LIB)/config.h
416 ## In the following dollars and backticks do not need the extra backslash.
417 $spitshell >>$Makefile <<'!NO!SUBS!'
419 private = preplibrary $(CONFIGPM) $(CONFIGPOD) lib/ExtUtils/Miniperl.pm git_version.h
421 # Files to be built with variable substitution before miniperl
423 sh = Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH pod/Makefile.SH
425 shextract = Makefile cflags config.h makedepend makedir myconfig pod/Makefile
427 addedbyconf = UU $(shextract) pstruct
429 # Unicode data files generated by mktables
430 unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
431 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
432 lib/unicore/Heavy.pl lib/unicore/mktables.lst
434 # Directories of Unicode data files generated by mktables
435 unidatadirs = lib/unicore/To lib/unicore/lib
437 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
438 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
439 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
440 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
441 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
442 h = $(h1) $(h2) $(h3) $(h4) $(h5)
444 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
445 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
446 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c
447 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c
448 c5 = $(madlysrc) $(mallocsrc)
450 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
452 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
453 obj1 = $(madlyobj) $(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)
454 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)
455 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)
457 mini_obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS) $(DTRACE_O)
458 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
459 obj = $(ndt_obj) $(DTRACE_O)
461 perltoc_pod_prereqs = extra.pods pod/perl5139delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
462 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
464 Icwd = -Idist/Cwd -Idist/Cwd/lib
472 -errchk=parentheses \
476 -erroff=E_ASSIGN_NARROW_CONV \
477 -erroff=E_BAD_PTR_CAST \
478 -erroff=E_BAD_PTR_CAST_ALIGN \
479 -erroff=E_BAD_PTR_INT_COMBINATION \
480 -erroff=E_BAD_SIGN_EXTEND \
481 -erroff=E_BLOCK_DECL_UNUSED \
482 -erroff=E_CASE_FALLTHRU \
483 -erroff=E_CONST_EXPR \
484 -erroff=E_CONSTANT_CONDITION \
485 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
486 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
487 -erroff=E_EXPR_NULL_EFFECT \
488 -erroff=E_FALSE_LOGICAL_EXPR \
489 -erroff=E_INCL_NUSD \
490 -erroff=E_LOOP_EMPTY \
491 -erroff=E_MAIN_PARAM \
492 -erroff=E_POINTER_TO_OBJECT \
493 -erroff=E_PTRDIFF_OVERFLOW \
494 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
495 -erroff=E_STATIC_UNUSED \
496 -erroff=E_TRUE_LOGICAL_EXPR
499 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
500 -D__builtin_va_list=va_list \
501 -Dsigjmp_buf=jmp_buf \
525 $(CCCMD) $(PLDLFLAGS) $*.c
528 $(CCCMDSRC) -E $*.c > $*.i
533 all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
535 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
537 .PHONY: all translators utilities
539 # Both git_version.h and lib/Config_git.pl are built
540 # by make_patchnum.pl.
541 git_version.h: lib/Config_git.pl
543 lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
544 $(MINIPERL) make_patchnum.pl
546 # make sure that we recompile perl.c if the git version changes
547 perl$(OBJ_EXT): git_version.h
551 # Making utilities and translators require Cwd. If we have dynamic
552 # loading, we only need miniperl and Cwd.$dlext. If we have static
553 # loading, we need to build perl first.
556 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
557 x2p_deps='$(MINIPERL_EXE) $(CONFIGPM) $(dynamic_ext) FORCE'
559 *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
560 x2p_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
564 $spitshell >>$Makefile <<!GROK!THIS!
565 translators: $x2p_deps
566 @echo " "; echo " Making x2p stuff"; cd x2p; \$(LDLIBPTH) \$(MAKE) all
569 cd x2p; \$(LDLIBPTH) \$(MAKE) s2p
571 utilities: $util_deps
572 @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
576 $spitshell >>$Makefile <<'!NO!SUBS!'
578 # This is now done by installman only if you actually want the man pages.
579 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
581 # Phony target to force checking subdirectories.
582 # Apparently some makes require an action for the FORCE target.
588 for file in op perl; do
589 if $issymlink $file.c; then
590 $spitshell >>$Makefile <<!GROK!THIS!
592 # We do a copy of the $file.c instead of a symlink because gcc gets huffy
593 # if we have a symlink forest to another disk (it complains about too many
594 # levels of symbolic links, even if we have only two)
596 ${file}mini.c: $file.c
597 \$(RMS) ${file}mini.c
598 \$(CPS) ${file}.c ${file}mini.c
601 $spitshell >>$Makefile <<!GROK!THIS!
603 ${file}mini.c: $file.c
604 \$(RMS) ${file}mini.c
605 \$(LNS) ${file}.c ${file}mini.c
609 $spitshell >>$Makefile <<!GROK!THIS!
611 ${file}mini\$(OBJ_EXT): ${file}mini.c
612 \$(CCCMD) \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
616 $spitshell >>$Makefile <<'!NO!SUBS!'
618 globals$(OBJ_EXT): uudmap.h bitcount.h
622 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
623 $(RUN) ./generate_uudmap$(HOST_EXE_EXT) uudmap.h bitcount.h
625 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
626 $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
628 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
629 $(CCCMD) $(PLDLFLAGS) $*.c
631 perlmain.c: $(MINIPERL_EXE) lib/ExtUtils/Miniperl.pm
632 $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(@ARGV)' DynaLoader $(static_ext) > perlmain.c
634 perlmain$(OBJ_EXT): perlmain.c
635 $(CCCMD) $(PLDLFLAGS) $*.c
637 # The file ext.libs is a list of libraries that must be linked in
638 # for static extensions, e.g. -lm -lgdbm, etc. The individual
639 # static extension Makefile's add to it.
640 ext.libs: $(static_ext)
641 -@test -f ext.libs || touch ext.libs
645 # How to build libperl. This is still rather convoluted.
646 # Load up custom Makefile.SH fragment for shared loading and executables:
649 Makefile_s="$osname/Makefile.SHs"
655 $spitshell >>$Makefile <<!GROK!THIS!
657 # In AIX we need to change this for building Perl itself from
658 # its earlier definition (which is for building external
659 # extensions *after* Perl has been built and installed)
660 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
663 case "$useshrplib" in
665 $spitshell >>$Makefile <<'!NO!SUBS!'
667 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
668 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
670 $(LIBPERL_NONSHR): $(obj)
671 $(RMS) $(LIBPERL_NONSHR)
672 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
674 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
675 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
676 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
678 MINIPERLEXP = $(MINIPERL_NONSHR)
680 LIBPERLEXPORT = perl.exp
686 $spitshell >>$Makefile <<'!NO!SUBS!'
687 MINIPERLEXP = $(MINIPERL_EXE)
689 PERLEXPORT = perl.exp
694 $spitshell >>$Makefile <<'!NO!SUBS!'
695 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
696 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp
701 $spitshell >>$Makefile <<'!NO!SUBS!'
702 MINIPERLEXP = miniperl
704 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
705 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
710 $spitshell >>$Makefile <<'!NO!SUBS!'
711 cygwin.c: cygwin/cygwin.c
712 $(LNS) cygwin/cygwin.c
714 LIBPERL_NONSHR = libperl$(LIB_EXT)
716 $(LIBPERL_NONSHR): $(obj)
717 $(RMS) $(LIBPERL_NONSHR)
718 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
724 if test -s $Makefile_s ; then
726 $spitshell >>$Makefile <<!GROK!THIS!
728 Makefile: $Makefile_s
733 $spitshell >>$Makefile <<'!NO!SUBS!'
734 $(DTRACE_H): perldtrace.d
735 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H)
737 mydtrace.h: $(DTRACE_H)
744 $spitshell >>$Makefile <<'!NO!SUBS!'
745 $(DTRACE_O): perldtrace.d
746 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
751 $spitshell >>$Makefile <<'!NO!SUBS!'
752 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
754 case "$useshrplib" in
756 $spitshell >>$Makefile <<'!NO!SUBS!'
758 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
762 $spitshell >>$Makefile <<'!NO!SUBS!'
763 rm -f libperl$(OBJ_EXT)
764 mv $@ libperl$(OBJ_EXT)
765 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
771 $spitshell >>$Makefile <<'!NO!SUBS!'
773 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
774 @$(ranlib) $(LIBPERL)
778 $spitshell >>$Makefile <<'!NO!SUBS!'
780 # How to build executables.
782 # The $& notation tells Sequent machines that it can do a parallel make,
783 # and is harmless otherwise.
784 # The miniperl -w -MExporter line is a basic cheap test to catch errors
785 # before make goes on to run preplibrary and then MakeMaker on extensions.
786 # This is very handy because later errors are often caused by miniperl
787 # build problems but that's not obvious to the novice.
788 # The Module used here must not depend on Config or any extensions.
792 case "${osname}${osvers}" in
794 $spitshell >>$Makefile <<'!NO!SUBS!'
795 $(MINIPERL_EXE): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
796 $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) \
798 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
799 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
803 $spitshell >>$Makefile <<'!NO!SUBS!'
804 $(MINIPERL_EXE): $& miniperlmain$(OBJ_EXT) $(mini_obj) perlmini$(OBJ_EXT) opmini$(OBJ_EXT)
805 $(CC) -o $(MINIPERL_EXE) $(mini_obj) \
806 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
807 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
813 *) case "$ldflags" in
814 *"-flat_namespace"*) ;;
815 *) # to allow opmini.o to override stuff in libperl.dylib
816 $spitshell >>$Makefile <<!NO!SUBS!
817 NAMESPACEFLAGS = -force_flat_namespace
823 $spitshell >>$Makefile <<'!NO!SUBS!'
824 $(MINIPERL_EXE): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
826 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
828 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
829 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
833 $spitshell >>$Makefile <<'!NO!SUBS!'
834 $(MINIPERL_EXE): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
836 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
838 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
839 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
844 $spitshell >>$Makefile <<'!NO!SUBS!'
846 $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
848 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
850 # Purify/Quantify Perls.
852 pure$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
853 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
855 purecov$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
856 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
858 quant$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
859 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
861 # Valgrind perl (currently Linux only)
863 perl.valgrind.config: config.sh
864 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
865 @$(MAKE) perl.config.dashg
866 @echo "Checking usemymalloc='n' in config.sh..."
867 @grep "^usemymalloc=" config.sh
868 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
869 @echo "And of course you have to have valgrind..."
870 $(VALGRIND) ./perl -e 1 2>/dev/null || exit 1
872 # Third Degree Perl (Tru64 only)
875 @echo "Checking optimize='-g' in config.sh..."
876 @grep "^optimize=" config.sh
877 @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1
879 perl.third.config: config.sh
880 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
881 @$(MAKE) perl.config.dashg
882 @echo "Checking usemymalloc='n' in config.sh..."
883 @grep "^usemymalloc=" config.sh
884 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
886 perl.third: /usr/bin/atom perl.third.config perl
887 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
888 @echo "Now you may run perl.third and then study perl.3log."
890 # Pixie Perls (Tru64 and IRIX only)
892 perl.pixie.config: config.sh
893 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
894 @$(MAKE) perl.config.dashg
896 perl.pixie.atom: /usr/bin/atom perl
897 atom -tool pixie -L. -all -toolargs="-quiet" perl
899 perl.pixie.irix: perl
902 perl.pixie: /usr/bin/pixie perl.pixie.config perl
903 if test -x /usr/bin/atom; then \
904 $(MAKE) perl.pixie.atom; \
906 $(MAKE) perl.pixie.irix; \
908 @echo "Now you may run perl.pixie and then run pixie."
913 @echo "Checking optimize='-pg' in config.sh..."
914 @grep "^optimize=" config.sh
915 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
917 perl.gprof.config: config.sh
918 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
919 @$(MAKE) perl.config.dashpg
921 perl.gprof: /usr/bin/gprof perl.gprof.config
923 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
924 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
929 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
930 @echo "Checking gccversion in config.sh..."
931 @grep "^gccversion=" config.sh
932 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
933 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
934 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
935 @grep "^ccflags=" config.sh
936 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
938 perl.gcov: perl.config.gcov
940 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
941 @echo "Now you may run perl.gcov and then run gcov some.c."
943 # Microperl. This is just a convenience thing if one happens to
944 # build also the full Perl and therefore the real big Makefile:
945 # usually one should manually explicitly issue the below command.
949 $(MAKE) -f Makefile.micro
955 # Some environment have no system(), which mkpport uses.
956 # Let's try running the commands with shell.
959 $spitshell >>$Makefile <<!GROK!THIS!
961 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
962 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
963 (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
969 $spitshell >>$Makefile <<'!NO!SUBS!'
971 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
972 $(MINIPERL) $(Icwd) mkppport
978 $spitshell >>$Makefile <<'!NO!SUBS!'
981 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) lib/re.pm $(PREPLIBRARY_LIBPERL)
983 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
985 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
988 lib/ExtUtils/Miniperl.pm: miniperlmain.c $(MINIPERL_EXE) minimod.pl $(CONFIGPM)
989 $(MINIPERL) minimod.pl > lib/ExtUtils/Miniperl.pm
991 lib/re.pm: ext/re/re.pm
993 cp ext/re/re.pm lib/re.pm
995 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
997 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
998 $(MINIPERL) $(Icwd) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
999 # Commented out so always runs, mktables looks at far more files than we
1000 # can in this makefile to decide if needs to run or not
1003 # $(PERL_EXE) and ext because buildtoc uses Text::Wrap uses re
1004 # But also this ensures that all extensions are built before we try to scan
1005 # them, which picks up Devel::PPPort's documentation.
1006 pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
1007 $(RUN_PERL) -f -Ilib pod/buildtoc --build-toc -q
1009 pod/perlapi.pod: pod/perlintern.pod
1011 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
1012 $(MINIPERL) autodoc.pl
1014 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1015 $(MINIPERL) $(Icwd) pod/perlmodlib.PL -q
1017 pod/perl5139delta.pod: pod/perldelta.pod
1018 $(LNS) perldelta.pod pod/perl5139delta.pod
1020 extra.pods: $(MINIPERL_EXE)
1021 -@test ! -f extra.pods || rm -f `cat extra.pods`
1023 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1024 nx=`echo $$x | sed -e "s/README\.//"`; \
1025 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1026 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1029 extras.make: $(PERL_EXE)
1030 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1032 extras.test: $(PERL_EXE)
1033 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1035 extras.install: $(PERL_EXE)
1036 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1038 .PHONY: install install-strip install-all install-verbose install-silent \
1039 no-install install.perl install.man install.html
1042 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
1044 install install-all:
1045 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
1048 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
1051 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
1054 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
1056 # Set this to an empty string to avoid an attempt of rebuild before install
1057 INSTALL_DEPENDENCE = all
1059 install.perl: $(INSTALL_DEPENDENCE) installperl
1060 $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1061 -@test ! -s extras.lst || $(MAKE) extras.install
1063 install.man: all installman
1064 $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1066 # XXX Experimental. Hardwired values, but useful for testing.
1067 # Eventually Configure could ask for some of these values.
1068 install.html: all installhtml
1069 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1070 $(RUN_PERL) installhtml \
1071 --podroot=. --podpath=. --recurse \
1072 --htmldir=$(privlib)/html \
1073 --htmlroot=$(privlib)/html \
1074 --splithead=pod/perlipc \
1075 --splititem=pod/perlfunc \
1076 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
1077 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1081 # I now supply perly.c with the kits, so the following section is
1082 # used only if you force bison to run by saying
1084 # You normally shouldn't remake perly.[ch].
1089 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1091 # this outputs perly.h, perly.act and perly.tab
1095 # We don't want to regenerate perly.c and perly.h, but they might
1096 # appear out-of-date after a patch is applied or a new distribution is
1104 # No compat3.sym here since and including the 5.004_50.
1105 # No interp.sym since 5.005_03.
1106 SYM = global.sym globvar.sym perlio.sym pp.sym
1108 SYMH = perlvars.h intrpvar.h
1112 # The following files are generated automatically
1113 # embed.pl: proto.h embed.h embedvar.h global.sym
1114 # perlapi.h perlapi.c
1115 # [* embed.pl needs pp.sym generated by opcode.pl! *]
1116 # keywords.pl: keywords.h
1117 # opcode.pl: opcode.h opnames.h pp.sym
1118 # regcomp.pl: regnodes.h
1119 # warnings.pl: warnings.h lib/warnings.pm
1120 # The correct versions should be already supplied with the perl kit,
1121 # in case you don't have perl available.
1122 # To force them to be regenerated, run
1124 # with your existing copy of perl
1125 # (make regen_headers is kept for backwards compatibility)
1127 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp.sym proto.h \
1128 embed.h embedvar.h global.sym \
1129 perlapi.h perlapi.c regnodes.h \
1130 warnings.h lib/warnings.pm
1132 .PHONY: regen_headers regen_all
1137 regen_headers: FORCE
1140 regen_meta: META.yml
1143 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib Porting/makemeta
1146 regen_all: regen regen_meta
1148 .PHONY: manisort manicheck
1151 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1152 perl Porting/manisort -q -o MANIFEST; sh -c true)
1155 perl Porting/manicheck
1158 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1159 # automatically get built. There should ordinarily be no need to change
1160 # any of this part of makefile.
1162 # The dummy dependency is a place holder in case $(dynamic_ext) or
1163 # $(static_ext) is empty.
1165 # DynaLoader may be needed for extensions that use Makefile.PL.
1167 $(DYNALOADER): $(MINIPERL_EXE) preplibrary FORCE $(nonxs_ext)
1168 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1170 d_dummy $(dynamic_ext): $(MINIPERL_EXE) preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT)
1171 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1173 s_dummy $(static_ext): $(MINIPERL_EXE) preplibrary makeppport $(DYNALOADER) FORCE
1174 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1176 n_dummy $(nonxs_ext): $(MINIPERL_EXE) preplibrary FORCE
1177 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1180 $spitshell >>$Makefile <<EOF
1184 $spitshell >>$Makefile <<'!NO!SUBS!'
1188 @eval `$(RUN_PERL) -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1190 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1191 realclean _realcleaner clobber _clobber \
1192 distclean veryclean _verycleaner
1196 realclean: _realcleaner _mopup
1197 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1200 -@rm -f Cross/run-* Cross/to-* Cross/from-*
1202 rm -f config.sh cppstdin Policy.sh extras.lst
1204 clobber: _realcleaner _mopup _clobber
1208 # Like distclean but also removes emacs backups and *.orig.
1209 veryclean: _verycleaner _mopup _clobber
1210 -@rm -f Obsolete Wanted
1212 # Do not 'make _mopup' directly.
1214 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c uudmap.h generate_uudmap$(EXE_EXT) bitcount.h
1216 -@test -f extra.pods && rm -f `cat extra.pods`
1217 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1218 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o
1219 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1220 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
1221 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
1222 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
1223 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
1224 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1225 -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1226 -rm -f opcode.h-old opnames.h-old pp.sym-old
1227 -rm -f config.arch config.over $(DTRACE_H) runtests
1229 # Do not 'make _tidy' directly.
1231 -cd pod; $(LDLIBPTH) $(MAKE) clean
1232 -cd utils; $(LDLIBPTH) $(MAKE) clean
1233 -cd x2p; $(LDLIBPTH) $(MAKE) clean
1234 -rm -f lib/Config_git.pl git_version.h
1235 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1236 $(MINIPERL) make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
1240 -cd os2; rm -f Makefile
1241 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1242 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1243 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
1244 -@if test -f $(MINIPERL_EXE) ; then \
1245 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1246 $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
1251 rm -f realclean.sh veryclean.sh
1252 -for file in `find cpan dist ext -name ppport.h` ; do rm -f $$file; done
1254 # Dear POSIX, thanks for making the default to xargs to be
1255 # run once if nothhing is passed in. It is such a great help.
1257 # Some systems do not support "?", so keep these files separate.
1259 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1260 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1261 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/$(PERL_EXE) t/rantests
1262 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1263 rm -rf $(addedbyconf)
1264 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1266 rm -rf $(unidatafiles) $(unidatadirs)
1268 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1269 rm -f h2ph.man pstruct
1271 rm -f preload lib/re.pm
1272 rm -rf lib/Encode lib/Compress lib/Hash lib/re
1273 rm -rf lib/TAP lib/Module/Pluggable lib/App
1275 rm -rf lib/IO/Compress lib/IO/Uncompress
1276 rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1277 rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1278 rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1280 rm -fr lib/CPAN lib/CPANPLUS
1281 rm -fr lib/ExtUtils/CBuilder
1282 -rmdir cpan/CPANPLUS-Dist-Build/t/dummy-cpanplus cpan/CPANPLUS/t/dummy-cpanplus cpan/CPANPLUS/t/dummy-localmirror
1284 -rmdir lib/Archive/Tar lib/Archive lib/Attribute
1286 -rmdir lib/Data lib/Devel lib/Digest
1287 -rmdir lib/ExtUtils/Command lib/ExtUtils/Constant lib/ExtUtils/Liblist lib/ExtUtils/MakeMaker
1288 -rmdir lib/File/Spec lib/Filter/Util lib/Filter
1289 -rmdir lib/I18N/LangTags lib/IO/Socket lib/IO lib/IPC
1290 -rmdir lib/List/Util lib/List
1291 -rmdir lib/Locale/Maketext lib/Locale
1292 -rmdir lib/Log/Message lib/Log
1293 -rmdir lib/Math/Big* lib/Math
1294 -rmdir lib/Memoize lib/MIME
1295 -rmdir lib/Module/Build/Platform lib/Module/Build lib/Module/Load lib/Module
1296 -rmdir lib/Net/FTP lib/Object
1297 -rmdir lib/Parse/CPAN lib/Parse
1298 -rmdir lib/PerlIO/via lib/PerlIO
1299 -rmdir lib/Package lib/Params
1300 -rmdir lib/Pod/Perldoc lib/Pod/Simple lib/Pod/Text
1301 -rmdir lib/Sys lib/Scalar/Util lib/Scalar
1302 -rmdir lib/Term/UI lib/Thread lib/Tie/Hash
1303 -rmdir lib/Test/Builder/Tester lib/Test/Builder lib/Test
1304 -rmdir lib/Unicode/Collate
1305 -rmdir lib/XS/APItest lib/XS
1306 -rmdir lib/inc/latest lib/inc
1307 -rmdir lib/autodie/exception lib/autodie lib/encoding lib/threads
1308 -rm -f lib/ExtUtils/CBuilder/t/libcompilet.dll.a
1309 -rm -f lib/ExtUtils/ParseXS/t/libXSTest.dll.a
1312 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1313 @$(LDLIBPTH) $(MAKE) _cleaner2
1316 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1317 @$(LDLIBPTH) $(MAKE) _cleaner2
1318 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1323 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1327 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1329 # Need to unset during recursion to go out of loop.
1330 # The README below ensures that the dependency list is never empty and
1331 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1333 MAKEDEPEND = Makefile makedepend
1335 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1336 $(MAKE) depend MAKEDEPEND=
1338 config.h: config_h.SH config.sh
1339 $(SHELL) config_h.SH
1343 sh ./makedepend MAKE=$(MAKE)
1344 cd x2p; $(MAKE) depend
1346 # Cannot postpone this until $firstmakefile is ready ;-)
1347 makedepend: makedepend.SH config.sh
1350 runtests: runtests.SH config.sh
1353 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1354 test_prep_reonly test_tty test-tty test_notty test-notty \
1355 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1356 test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
1357 test.third check.third utest.third ucheck.third test_notty.third \
1358 test.deparse test_notty.deparse test_harness test_harness_notty \
1359 minitest coretest test.taintwarn test-reonly _test
1362 echo >&2 The _test target is deprecated. Please upgrade your smoker
1363 PERL=./perl $(RUN_TESTS) choose
1365 # Cannot delegate rebuilding of t/perl to make
1366 # to allow interlaced test and minitest
1368 # Architecture-neutral stuff:
1370 test_prep_pre: preplibrary utilities $(nonxs_ext)
1372 test_prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p
1373 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1375 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1376 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1377 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1379 test check: test_prep
1385 test_notty: test_prep
1388 utest ucheck test.utf8 check.utf8: test_prep
1389 TEST_ARGS=-utf8 $(RUN_TESTS) choose
1392 TEST_ARGS=-core $(RUN_TESTS) choose
1394 test-prep: test_prep
1398 test-notty: test_notty
1402 test.torture torturetest: test_prep
1403 TEST_ARGS=-torture $(RUN_TESTS) choose
1405 # Targets for UTF16 testing:
1407 minitest.utf16: minitest.prep
1408 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \
1409 && $(RUN_PERL) TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1411 test.utf16 check.utf16: test_prep
1412 TEST_ARGS=-utf16 $(RUN_TESTS) choose
1414 utest.utf16 ucheck.utf16: test_prep
1415 TEST_ARGS="-utf8 -utf16" $(RUN_TESTS) choose
1417 # Targets for valgrind testing:
1419 test_prep.valgrind: test_prep perl.valgrind
1421 test.valgrind check.valgrind: test_prep perl.valgrind.config
1422 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(RUN_TESTS) choose
1424 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config
1425 PERL_VALGRIND=1 TEST_ARGS=-utf8 $(RUN_TESTS) choose
1427 test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1428 PERL_VALGRIND=1 $(RUN_TESTS) no-tty
1430 # Targets for Third Degree testing.
1432 test_prep.third: test_prep perl.third
1433 cd t && (rm -f ./perl.third$(EXE_EXT); $(LNS) ../perl.third$(EXE_EXT) perl.third(EXE_EXT))
1435 test.third check.third: test_prep.third perl.third
1436 PERL=./perl.third PERL_3LOG=1 $(RUN_TESTS) choose
1438 utest.third ucheck.third: test_prep.third perl.third
1439 PERL=./perl.third PERL_3LOG=1 TEST_ARGS=-utf8 $(RUN_TESTS) choose
1441 test_notty.third: test_prep.third perl.third
1442 PERL=./perl.third PERL_3LOG=1 $(RUN_TESTS) choose
1444 # Targets for Deparse testing.
1446 test.deparse: test_prep
1447 TEST_ARGS=-deparse $(RUN_TESTS) choose
1449 test_notty.deparse: test_prep
1450 TEST_ARGS=-deparse $(RUN_TESTS) no-tty
1452 # Targets to run the test suite with -t
1454 test.taintwarn: test_prep
1455 TEST_ARGS=-taintwarn $(RUN_TESTS) choose
1458 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1460 @echo "You may see some irrelevant test failures if you have been unable"
1461 @echo "to build lib/Config.pm, or the Unicode data files."
1464 # Can't depend on lib/Config.pm because that might be where miniperl
1466 minitest: $(MINIPERL_EXE) lib/re.pm minitest.prep
1467 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \
1468 && $(RUN_PERL) TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t op/*.t uni/*.t </dev/tty
1472 test_harness: test_prep
1473 TESTFILE=harness $(RUN_TESTS) choose
1475 test_harness_notty: test_prep
1476 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1478 test-reonly: test_prep_reonly
1479 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1482 # Porting tests (well-formedness of pod, manifest, etc)
1484 test_porting: test_prep
1485 cd t && $(RUN_PERL) harness porting/*.t
1487 # Handy way to run perlbug -ok without having to install and run the
1488 # installed perlbug. We don't re-run the tests here - we trust the user.
1489 # Please *don't* use this unless all tests pass.
1490 # If you want to report test failures, use "make nok" instead.
1492 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1495 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1498 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1501 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1503 okfilenack: utilities
1504 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1507 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1510 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1513 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1515 nokfilenack: utilities
1516 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1518 .PHONY: clist hlist shlist
1521 echo $(c) | tr ' ' $(TRNL) >.clist
1524 echo $(h) | tr ' ' $(TRNL) >.hlist
1527 echo $(sh) | tr ' ' $(TRNL) >.shlist
1529 Makefile: Makefile.SH ./config.sh
1530 $(SHELL) Makefile.SH
1534 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1539 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1541 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1542 # If this runs make out of memory, delete /usr/include lines.
1549 $ln Makefile ../Makefile
1552 $rm -f $firstmakefile
1554 # Now do any special processing required before building.
1559 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1564 rm -f y.tab.c y.tab.h
1567 # we are using two different yaccs in BS2000 Posix!
1568 byacc a2p.y >/dev/null 2>&1
1571 yacc a2p.y >/dev/null 2>&1
1574 if cmp -s y.tab.c a2p.c
1578 echo "a2p.y -> a2p.c" >&2
1581 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1582 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1583 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1586 # In case somebody yacc -d:ed the a2p.y.
1589 if cmp -s y.tab.h a2p.h
1593 echo "a2p.h -> a2p.h" >&2
1602 # Do nothing in VM/ESA.
1605 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1609 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1614 # ex: set ts=8 sts=4 sw=4 noet: