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
28 # if cross-compilation, the Makefile named accordingly
29 Makefile=Makefile-cross-$CROSS_NAME
30 . Cross/config-${CROSS_NAME}.sh
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*)
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
263 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
268 # The following are mentioned only to make metaconfig include the
269 # appropriate questions in Configure. If you want to change these,
270 # edit config.sh instead, or specify --man1dir=/wherever on
271 # installman commandline.
273 scriptdir = $scriptdir
274 shrpdir = $archlibexp/CORE
275 privlib = $installprivlib
281 # The following are used to build and install shared libraries for
283 LDDLFLAGS = $lddlflags
284 SHRPLDFLAGS = $shrpldflags
285 CCDLFLAGS = $ccdlflags
287 PLDLFLAGS = $pldlflags
289 LLIBPERL= $linklibperl
290 LLIBPERL_NONSHR= $linklibperl_nonshr
293 # Static targets are ordinarily built without CCCDLFLAGS. However,
294 # if building a shared libperl.so that might later be linked into
295 # another application, then it might be appropriate to also build static
296 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
298 STATIC_LDFLAGS = $static_ldflags
300 # The following is used to include the current directory in
301 # the dynamic loader path you are building a shared libperl.
304 # Sometimes running an executable is an adventure.
307 # These variables may need to be manually set for non-Unix systems.
315 # Macros to invoke a copy of miniperl during the build. Targets which
316 # are built using these macros should depend on \$(MINIPERL_EXE)
317 MINIPERL_EXE = miniperl\$(EXE_EXT)
318 MINIPERL = \$(LDLIBPTH) \$(RUN) ./miniperl\$(EXE_EXT) -Ilib
320 # Macros to invoke a copy of our fully operational perl during the build.
321 PERL_EXE = perl\$(EXE_EXT)
322 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT)
324 # Macros to run our tests
325 RUN_TESTS = \$(LDLIBPTH) ./runtests
327 dynamic_ext = $dynamic_list
328 dynamic_ext_re = $dynamic_ext_re
329 static_ext = $static_list
330 nonxs_ext = $nonxs_list
331 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
332 DYNALOADER = DynaLoader\$(OBJ_EXT)
334 libs = $perllibs $cryptlib
336 public = \$(PERL_EXE) utilities translators
338 shellflags = $shellflags
340 # This is set to MAKE=$make if your $make command doesn't
344 # Mention $gmake here so it gets probed for by Configure.
350 $spitshell >>$Makefile <<!GROK!THIS!
351 # If you're going to use valgrind and it can't be invoked as plain valgrind
352 # then you'll need to change this, or override it on the make command line.
354 VG_TEST ?= ./perl -e 1 2>/dev/null
360 $spitshell >>$Makefile <<!GROK!THIS!
364 MINIDTRACE_O = $minidtrace_o
366 FIRSTMAKEFILE = $firstmakefile
368 # Any special object files needed by this architecture, e.g. os2/os2.obj
371 .SUFFIXES: .c \$(OBJ_EXT) .i .s
376 # how to tr(anslate) newlines
383 INSTALLPREFIXEXP = $prefix
386 # not used by Makefile but by installperl;
387 # mentioned here so that metaconfig picks these up
391 case "${osname}:${osvers}" in
393 $spitshell >>$Makefile <<EOF
395 # Your locales are broken (osname $osname, osvers $osvers)
396 # and to avoid the numerous
397 # perl: warning: Setting locale failed.
398 # warnings during the build process we reset the locale variables.
409 ## In the following dollars and backticks do not need the extra backslash.
410 $spitshell >>$Makefile <<'!NO!SUBS!'
412 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
414 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
416 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
417 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
419 CONFIGPOD = lib/Config.pod
425 # if cross-compilation
426 $spitshell >>$Makefile <<!GROK!THIS!
427 CROSS_NAME = $CROSS_NAME
428 CROSS_LIB = xlib/$CROSS_NAME
430 CCCMD = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$@\` -I\$(CROSS_LIB)
431 CCCMDSRC = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$<\` -I\$(CROSS_LIB)
432 CONFIGPM = xlib/\$(CROSS_NAME)/Config.pm
433 CONFIGPOD = xlib/\$(CROSS_NAME)/Config.pod
436 xconfig.h: config_h.SH Cross/config-\$(CROSS_NAME).sh
437 CONFIG_SH=Cross/config-\$(CROSS_NAME).sh CONFIG_H=xconfig.h \$(SHELL) config_h.SH
438 #TODO \$(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib -MCross=\$(CROSS_NAME) config_h.PL "INST_VER=\$(INST_VER)" "CORE_DIR=\$(CROSS_LIB)" "CONFIG_H=xconfig.h"
439 cp xconfig.h \$(CROSS_LIB)/
440 cp xconfig.h \$(CROSS_LIB)/config.h
447 echo $@ | sed -e s/\\\.SH//g -e s/_/./g
450 SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH x2p/Makefile.SH'
451 shextract=`SH_to_target $SH`
453 ## In the following dollars and backticks do not need the extra backslash.
454 $spitshell >>$Makefile <<!GROK!THIS!
456 private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) lib/ExtUtils/Miniperl.pm git_version.h lib/buildcustomize.pl
458 # Files to be built with variable substitution before miniperl
462 shextract = $shextract
465 ## In the following dollars and backticks do not need the extra backslash.
466 $spitshell >>$Makefile <<'!NO!SUBS!'
468 addedbyconf = UU $(shextract) pstruct
470 # Unicode data files generated by mktables
471 unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
472 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
473 lib/unicore/UCD.pl lib/unicore/Name.pm \
474 lib/unicore/Heavy.pl lib/unicore/mktables.lst
476 # Directories of Unicode data files generated by mktables
477 unidatadirs = lib/unicore/To lib/unicore/lib
479 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
480 h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
481 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
482 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
483 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
484 h6 = charclass_invlists.h
485 h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
487 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
488 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
489 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
490 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c
491 c5 = $(madlysrc) $(mallocsrc)
493 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
495 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
496 obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT)
497 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) keywords$(OBJ_EXT)
498 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)
499 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)
501 minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
502 mini_obj = $(minindt_obj) $(MINIDTRACE_O)
503 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
504 obj = $(ndt_obj) $(DTRACE_O)
506 perltoc_pod_prereqs = extra.pods pod/perl5192delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
507 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
508 generated_headers = uudmap.h bitcount.h mg_data.h
516 -errchk=parentheses \
520 -erroff=E_ASSIGN_NARROW_CONV \
521 -erroff=E_BAD_PTR_CAST \
522 -erroff=E_BAD_PTR_CAST_ALIGN \
523 -erroff=E_BAD_PTR_INT_COMBINATION \
524 -erroff=E_BAD_SIGN_EXTEND \
525 -erroff=E_BLOCK_DECL_UNUSED \
526 -erroff=E_CASE_FALLTHRU \
527 -erroff=E_CONST_EXPR \
528 -erroff=E_CONSTANT_CONDITION \
529 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
530 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
531 -erroff=E_EXPR_NULL_EFFECT \
532 -erroff=E_FALSE_LOGICAL_EXPR \
533 -erroff=E_INCL_NUSD \
534 -erroff=E_LOOP_EMPTY \
535 -erroff=E_MAIN_PARAM \
536 -erroff=E_POINTER_TO_OBJECT \
537 -erroff=E_PTRDIFF_OVERFLOW \
538 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
539 -erroff=E_STATIC_UNUSED \
540 -erroff=E_TRUE_LOGICAL_EXPR
543 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
544 -D__builtin_va_list=va_list \
545 -Dsigjmp_buf=jmp_buf \
569 $(CCCMD) $(PLDLFLAGS) $*.c
572 $(CCCMDSRC) -E $*.c > $*.i
577 all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
579 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
581 .PHONY: all translators utilities
583 # Both git_version.h and lib/Config_git.pl are built
584 # by make_patchnum.pl.
585 git_version.h: lib/Config_git.pl
587 lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
588 $(MINIPERL) make_patchnum.pl
590 # make sure that we recompile perl.c if the git version changes
591 perl$(OBJ_EXT): git_version.h
595 # Making utilities and translators require Cwd. If we have dynamic
596 # loading, we only need miniperl and Cwd.$dlext. If we have static
597 # loading, we need to build perl first.
598 case "$usedl$static_cwd" in
600 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
601 x2p_deps="\$(MINIPERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE"
604 util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
605 x2p_deps="\$(PERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE"
607 *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
608 x2p_deps="\$(PERL_EXE) \$(CONFIGPM) x2p/$firstmakefile FORCE"
612 $spitshell >>$Makefile <<!GROK!THIS!
613 x2p/$firstmakefile: makedepend
614 cd x2p; \$(MAKE) depend
616 translators: $x2p_deps
617 @echo " "; echo " Making x2p stuff"; cd x2p; \$(LDLIBPTH) \$(MAKE) all
620 cd x2p; \$(LDLIBPTH) \$(MAKE) s2p
622 x2p/find2perl: $x2p_deps
623 cd x2p; \$(LDLIBPTH) \$(MAKE) find2perl
625 utilities: $util_deps
626 @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
630 $spitshell >>$Makefile <<'!NO!SUBS!'
632 # This is now done by installman only if you actually want the man pages.
633 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
635 # Phony target to force checking subdirectories.
636 # Apparently some makes require an action for the FORCE target.
642 for file in op perl; do
643 if $issymlink $file.c; then
644 $spitshell >>$Makefile <<!GROK!THIS!
646 # We do a copy of the $file.c instead of a symlink because gcc gets huffy
647 # if we have a symlink forest to another disk (it complains about too many
648 # levels of symbolic links, even if we have only two)
650 ${file}mini.c: $file.c
651 \$(RMS) ${file}mini.c
652 \$(CPS) ${file}.c ${file}mini.c
655 $spitshell >>$Makefile <<!GROK!THIS!
657 ${file}mini.c: $file.c
658 \$(RMS) ${file}mini.c
659 \$(LNS) ${file}.c ${file}mini.c
663 $spitshell >>$Makefile <<!GROK!THIS!
665 ${file}mini\$(OBJ_EXT): ${file}mini.c
666 \$(CCCMD) \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
670 $spitshell >>$Makefile <<'!NO!SUBS!'
672 globals$(OBJ_EXT): $(generated_headers)
674 uudmap.h mg_data.h: bitcount.h
676 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
677 $(RUN) ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
679 generate_uudmap$(OBJ_EXT): mg_raw.h
681 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
682 $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
684 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
685 $(CCCMD) $(PLDLFLAGS) $*.c
687 perlmain.c: $(MINIPERL_EXE) lib/ExtUtils/Miniperl.pm
688 $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(@ARGV)' DynaLoader $(static_ext) > perlmain.c
690 perlmain$(OBJ_EXT): perlmain.c
691 $(CCCMD) $(PLDLFLAGS) $*.c
693 # The file ext.libs is a list of libraries that must be linked in
694 # for static extensions, e.g. -lm -lgdbm, etc. The individual
695 # static extension Makefile's add to it.
696 ext.libs: $(static_ext)
697 -@test -f ext.libs || touch ext.libs
701 # How to build libperl. This is still rather convoluted.
702 # Load up custom Makefile.SH fragment for shared loading and executables:
705 Makefile_s="$osname/Makefile.SHs"
711 $spitshell >>$Makefile <<!GROK!THIS!
713 # In AIX we need to change this for building Perl itself from
714 # its earlier definition (which is for building external
715 # extensions *after* Perl has been built and installed)
716 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
719 case "$useshrplib" in
721 $spitshell >>$Makefile <<'!NO!SUBS!'
723 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
724 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
726 $(LIBPERL_NONSHR): $(obj)
727 $(RMS) $(LIBPERL_NONSHR)
728 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
730 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
731 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
732 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
734 MINIPERLEXP = $(MINIPERL_NONSHR)
736 LIBPERLEXPORT = perl.exp
742 $spitshell >>$Makefile <<'!NO!SUBS!'
743 MINIPERLEXP = $(MINIPERL_EXE)
745 PERLEXPORT = perl.exp
750 $spitshell >>$Makefile <<'!NO!SUBS!'
751 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
752 ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
757 $spitshell >>$Makefile <<'!NO!SUBS!'
758 MINIPERLEXP = miniperl
760 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
761 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
766 $spitshell >>$Makefile <<'!NO!SUBS!'
767 cygwin.c: cygwin/cygwin.c
768 $(LNS) cygwin/cygwin.c
770 LIBPERL_NONSHR = libperl$(LIB_EXT)
772 $(LIBPERL_NONSHR): $(obj)
773 $(RMS) $(LIBPERL_NONSHR)
774 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
780 if test -s $Makefile_s ; then
782 $spitshell >>$Makefile <<!GROK!THIS!
784 Makefile: $Makefile_s
789 $spitshell >>$Makefile <<'!NO!SUBS!'
790 # dtrace dicards const qualifiers from arguments, put them back
791 $(DTRACE_H): perldtrace.d
792 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
793 sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
794 $(RMS) $(DTRACE_H).in
796 mydtrace.h: $(DTRACE_H)
803 $spitshell >>$Makefile <<'!NO!SUBS!'
804 $(DTRACE_O): perldtrace.d $(ndt_obj)
805 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
807 $(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
808 $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
813 $spitshell >>$Makefile <<'!NO!SUBS!'
814 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
816 case "$useshrplib" in
818 $spitshell >>$Makefile <<'!NO!SUBS!'
820 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
824 $spitshell >>$Makefile <<'!NO!SUBS!'
825 rm -f libperl$(OBJ_EXT)
826 mv $@ libperl$(OBJ_EXT)
827 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
833 $spitshell >>$Makefile <<'!NO!SUBS!'
835 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
836 @$(ranlib) $(LIBPERL)
840 $spitshell >>$Makefile <<'!NO!SUBS!'
842 # How to build executables.
844 # The $& notation tells Sequent machines that it can do a parallel make,
845 # and is harmless otherwise.
846 # The miniperl -w -MExporter line is a basic cheap test to catch errors
847 # before make goes on to run preplibrary and then MakeMaker on extensions.
848 # This is very handy because later errors are often caused by miniperl
849 # build problems but that's not obvious to the novice.
850 # The Module used here must not depend on Config or any extensions.
852 # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
853 # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
854 # miniperl to exist first permits us to
855 # a) have one rule generate both miniperl and lib/buildcustomize.pl
856 # (so that lib/buildcustomise.pl is always available. This simplifies things)
857 # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
859 $(MINIPERL_EXE): lib/buildcustomize.pl
863 case "${osname}${osvers}" in
865 $spitshell >>$Makefile <<'!NO!SUBS!'
866 lib/buildcustomize.pl: $& $(mini_obj)
867 $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
868 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
869 $(MINIPERL) -f write_buildcustomize.pl
873 $spitshell >>$Makefile <<'!NO!SUBS!'
874 lib/buildcustomize.pl: $& $(mini_obj) write ldcustomize.pl
875 $(CC) -o $(MINIPERL_EXE) $(mini_obj libs)
876 $(LDLIBPTH) $(RUN) ./miniperl$(HOST _EXT) -w -Ilib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
877 $(MINIPERL) -f write_buildcustomize.pl
883 *) case "$ldflags" in
884 *"-flat_namespace"*) ;;
885 *) # to allow opmini.o to override stuff in libperl.dylib
886 $spitshell >>$Makefile <<!NO!SUBS!
887 NAMESPACEFLAGS = -force_flat_namespace
893 $spitshell >>$Makefile <<'!NO!SUBS!'
894 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
896 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
898 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
899 $(MINIPERL) -f write_buildcustomize.pl
903 $spitshell >>$Makefile <<'!NO!SUBS!'
904 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
906 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
908 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
909 $(MINIPERL) -f write_buildcustomize.pl
914 $spitshell >>$Makefile <<'!NO!SUBS!'
916 $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
918 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
920 # Purify/Quantify Perls.
922 pure$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
923 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
925 purecov$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
926 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
928 quant$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
929 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
933 case "${osname}${osvers}" in
935 $spitshell >>$Makefile <<'!NO!SUBS!'
936 # Valgrind perl (currently Linux, Darwin only)
938 perl.valgrind.config: config.sh
939 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
940 @$(MAKE) perl.config.dashg
941 @echo "Checking usemymalloc='n' in config.sh..."
942 @grep "^usemymalloc=" config.sh
943 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
944 @echo "And of course you have to have valgrind..."
945 $(VALGRIND) $(VG_TEST) || exit 1
950 $spitshell >>$Makefile <<'!NO!SUBS!'
953 @echo "Checking optimize='-g' in config.sh..."
954 @grep "^optimize=" config.sh
955 @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1
960 @echo "Checking optimize='-pg' in config.sh..."
961 @grep "^optimize=" config.sh
962 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
964 perl.gprof.config: config.sh
965 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
966 @$(MAKE) perl.config.dashpg
968 perl.gprof: /usr/bin/gprof perl.gprof.config
970 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
971 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
976 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
977 @echo "Checking gccversion in config.sh..."
978 @grep "^gccversion=" config.sh
979 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
980 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
981 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
982 @grep "^ccflags=" config.sh
983 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
985 perl.gcov: perl.config.gcov
987 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
988 @echo "Now you may run perl.gcov and then run gcov some.c."
990 # Microperl. This is just a convenience thing if one happens to
991 # build also the full Perl and therefore the real big Makefile:
992 # usually one should manually explicitly issue the below command.
996 $(MAKE) -f Makefile.micro
1002 # Some environment have no system(), which mkpport uses.
1003 # Let's try running the commands with shell.
1006 $spitshell >>$Makefile <<!GROK!THIS!
1008 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
1009 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
1010 (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
1016 $spitshell >>$Makefile <<'!NO!SUBS!'
1018 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
1019 $(MINIPERL) mkppport
1025 $spitshell >>$Makefile <<'!NO!SUBS!'
1028 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
1030 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
1032 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
1033 $(MINIPERL) configpm
1035 lib/ExtUtils/Miniperl.pm: miniperlmain.c $(MINIPERL_EXE) minimod.pl $(CONFIGPM)
1036 $(MINIPERL) minimod.pl > lib/ExtUtils/Miniperl.pm
1038 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
1040 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
1041 $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
1042 # Commented out so always runs, mktables looks at far more files than we
1043 # can in this makefile to decide if needs to run or not
1046 # $(PERL_EXE) and ext because buildtoc uses Text::Wrap uses re
1047 # But also this ensures that all extensions are built before we try to scan
1048 # them, which picks up Devel::PPPort's documentation.
1049 pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
1050 $(RUN_PERL) -f -Ilib pod/buildtoc -q
1052 pod/perlapi.pod: pod/perlintern.pod
1054 # Depending on $(nonxs_ext) gets us Text::Wrap built
1055 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc $(nonxs_ext)
1056 $(MINIPERL) autodoc.pl
1058 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1059 $(MINIPERL) pod/perlmodlib.PL -q
1061 pod/perl5192delta.pod: pod/perldelta.pod
1062 $(RMS) pod/perl5192delta.pod
1063 $(LNS) perldelta.pod pod/perl5192delta.pod
1065 extra.pods: $(MINIPERL_EXE)
1066 -@test ! -f extra.pods || rm -f `cat extra.pods`
1068 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1069 nx=`echo $$x | sed -e "s/README\.//"`; \
1070 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1071 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1074 extras.make: $(PERL_EXE)
1075 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1077 extras.test: $(PERL_EXE)
1078 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1080 extras.install: $(PERL_EXE)
1081 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1083 .PHONY: install install-strip install-all install-verbose install-silent \
1084 no-install install.perl install.man install.html
1086 install_strip install-strip:
1087 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
1089 install install_all install-all:
1090 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
1092 install_verbose install-verbose:
1093 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
1095 install_silent install-silent:
1096 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
1098 no_install no-install:
1099 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
1101 # Set this to an empty string to avoid an attempt of rebuild before install
1102 INSTALL_DEPENDENCE = all
1104 install.perl: $(INSTALL_DEPENDENCE) installperl
1105 $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1106 -@test ! -s extras.lst || $(MAKE) extras.install
1108 install.man: all installman
1109 $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1111 # XXX Experimental. Hardwired values, but useful for testing.
1112 # Eventually Configure could ask for some of these values.
1113 install.html: all installhtml
1114 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1115 $(RUN_PERL) installhtml \
1116 --podroot=. --podpath=. --recurse \
1117 --htmldir=$(privlib)/html \
1118 --htmlroot=$(privlib)/html \
1119 --splithead=pod/perlipc \
1120 --splititem=pod/perlfunc \
1121 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1125 # I now supply perly.c with the kits, so the following section is
1126 # used only if you force bison to run by saying
1128 # You normally shouldn't remake perly.[ch].
1132 run_byacc run-byacc:
1133 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1135 # this outputs perly.h, perly.act and perly.tab
1136 regen_perly regen-perly:
1139 # We don't want to regenerate perly.c and perly.h, but they might
1140 # appear out-of-date after a patch is applied or a new distribution is
1148 SYM = globvar.sym perlio.sym
1150 SYMH = perlvars.h intrpvar.h
1154 # The following files are generated automatically
1155 # embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c
1156 # opcode.pl: opcode.h opnames.h pp_proto.h
1157 # regcomp.pl: regnodes.h
1158 # warnings.pl: warnings.h lib/warnings.pm
1159 # feature.pl: feature.h lib/feature.pm
1160 # The correct versions should be already supplied with the perl kit,
1161 # in case you don't have perl available.
1162 # To force them to be regenerated, run
1164 # with your existing copy of perl
1165 # (make regen_headers is kept for backwards compatibility)
1167 AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
1168 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
1169 lib/feature.pm feature.h
1171 .PHONY: regen_headers regen_all
1175 -perl regen/uconfig_h.pl
1177 regen_headers regen-headers: FORCE
1179 -perl regen/uconfig_h.pl -v
1181 regen_meta regen-meta: META.yml META.json
1184 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib Porting/makemeta -y
1187 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib Porting/makemeta -j
1190 regen_all regen-all: regen regen_meta
1192 .PHONY: manisort manicheck
1195 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1196 perl Porting/manisort -q -o MANIFEST; sh -c true)
1199 perl Porting/manicheck
1202 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1203 # automatically get built. There should ordinarily be no need to change
1204 # any of this part of makefile.
1206 # The dummy dependency is a place holder in case $(dynamic_ext) or
1207 # $(static_ext) is empty.
1209 # DynaLoader may be needed for extensions that use Makefile.PL.
1211 $(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1212 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1214 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1215 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1217 s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1218 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1220 n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1221 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1224 $spitshell >>$Makefile <<EOF
1228 $spitshell >>$Makefile <<'!NO!SUBS!'
1232 @eval `$(RUN_PERL) -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1234 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1235 realclean _realcleaner clobber _clobber \
1236 distclean veryclean _verycleaner
1240 realclean: _realcleaner _mopup
1241 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1244 -@rm -f Cross/run-* Cross/to-* Cross/from-*
1246 rm -f config.sh cppstdin Policy.sh extras.lst
1248 clobber: _realcleaner _mopup _clobber
1252 # Like distclean but also removes emacs backups and *.orig.
1253 veryclean: _verycleaner _mopup _clobber
1254 -@rm -f Obsolete Wanted
1256 # Do not 'make _mopup' directly.
1258 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1260 -@test -f extra.pods && rm -f `cat extra.pods`
1261 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1262 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1263 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1265 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1266 -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1267 -rm -f config.arch config.over $(DTRACE_H)
1269 # Do not 'make _tidy' directly.
1271 -cd pod; $(LDLIBPTH) $(MAKE) clean
1272 -cd utils; $(LDLIBPTH) $(MAKE) clean
1273 -cd x2p; $(LDLIBPTH) $(MAKE) clean
1274 -rm -f lib/Config_git.pl git_version.h
1275 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1276 $(MINIPERL) make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
1280 -cd os2; rm -f Makefile
1281 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1282 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1283 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
1284 -@if test -f $(MINIPERL_EXE) ; then \
1285 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1286 $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
1291 rm -f realclean.sh veryclean.sh
1292 -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1294 # Dear POSIX, thanks for making the default to xargs to be
1295 # run once if nothhing is passed in. It is such a great help.
1297 # Some systems do not support "?", so keep these files separate.
1299 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1300 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1301 rm -f t/$(PERL_EXE) t/rantests
1303 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1304 rm -rf $(addedbyconf)
1305 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1307 rm -rf $(unidatafiles) $(unidatadirs)
1309 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1310 rm -f h2ph.man pstruct
1313 rm -rf lib/Encode lib/Compress lib/Hash lib/re
1314 rm -rf lib/TAP lib/Module/Pluggable lib/App
1316 rm -rf lib/IO/Compress lib/IO/Uncompress
1317 rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1318 rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1319 rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1322 rm -fr lib/ExtUtils/CBuilder
1324 rm -rf pod/perlfunc pod/perlipc
1326 -rmdir lib/Archive/Tar lib/Archive lib/Attribute
1327 -rmdir lib/CGI lib/Carp
1328 -rmdir lib/Data lib/Devel lib/Digest
1329 -rmdir lib/ExtUtils/Command lib/ExtUtils/Constant lib/ExtUtils/Liblist lib/ExtUtils/MakeMaker
1330 -rmdir lib/File/Spec lib/Filter/Util lib/Filter
1331 -rmdir lib/I18N/LangTags lib/IO/Socket lib/IO lib/IPC
1332 -rmdir lib/List/Util lib/List
1333 -rmdir lib/Locale/Maketext lib/Locale
1334 -rmdir lib/Log/Message lib/Log
1335 -rmdir lib/Math/Big* lib/Math
1336 -rmdir lib/Memoize lib/MIME
1337 -rmdir lib/Module/Build/Platform lib/Module/Build lib/Module/Load lib/Module
1338 -rmdir lib/Net/FTP lib/Object
1339 -rmdir lib/Parse/CPAN lib/Parse
1340 -rmdir lib/PerlIO/via lib/PerlIO
1341 -rmdir lib/Package lib/Params
1342 -rmdir lib/Pod/Perldoc lib/Pod/Simple lib/Pod/Text
1343 -rmdir lib/Sys lib/Scalar/Util lib/Scalar
1344 -rmdir lib/Term/UI lib/Thread lib/Tie/Hash
1345 -rmdir lib/Test/Builder/Tester lib/Test/Builder lib/Test
1346 -rmdir lib/Unicode/Collate
1347 -rmdir lib/XS/APItest lib/XS
1348 -rmdir lib/inc/latest lib/inc
1349 -rmdir lib/autodie/exception lib/autodie lib/encoding lib/threads
1350 -rm -f lib/ExtUtils/CBuilder/t/libcompilet.dll.a
1351 -rm -f lib/ExtUtils/ParseXS/t/libXSTest.dll.a
1354 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1355 @$(LDLIBPTH) $(MAKE) _cleaner2
1358 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1359 @$(LDLIBPTH) $(MAKE) _cleaner2
1360 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1365 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1369 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1371 # Need to unset during recursion to go out of loop.
1372 # The README below ensures that the dependency list is never empty and
1373 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1375 MAKEDEPEND = Makefile makedepend
1377 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1378 $(MAKE) depend MAKEDEPEND=
1382 file=`SH_to_target $f`
1383 $spitshell >>$Makefile <<!GROK!THIS!
1390 $spitshell >>$Makefile <<'!NO!SUBS!'
1394 sh ./makedepend MAKE=$(MAKE) cflags
1396 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1397 test_prep_reonly test_tty test-tty test_notty test-notty \
1398 test_harness test_harness_notty minitest test-reonly _test
1401 echo >&2 The _test target is deprecated. Please upgrade your smoker
1402 PERL=./perl $(RUN_TESTS) choose
1404 # Cannot delegate rebuilding of t/perl to make
1405 # to allow interlaced test and minitest
1407 # Architecture-neutral stuff:
1409 test_prep_pre: preplibrary utilities $(nonxs_ext)
1411 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1412 $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p x2p/find2perl \
1414 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1416 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1417 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1418 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1420 test check: test_prep
1423 test_tty test-tty: test_prep
1426 test_notty test-notty: test_prep
1431 case "${osname}${osvers}" in
1433 $spitshell >>$Makefile <<'!NO!SUBS!'
1434 # Targets for valgrind testing:
1436 test_prep.valgrind: test_prep perl.valgrind
1438 test.valgrind check.valgrind: test_prep perl.valgrind.config
1439 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(RUN_TESTS) choose
1441 test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1442 PERL_VALGRIND=1 $(RUN_TESTS) no-tty
1447 $spitshell >>$Makefile <<'!NO!SUBS!'
1449 # Can't depend on lib/Config.pm because that might be where miniperl
1451 minitest: $(MINIPERL_EXE)
1452 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1454 @echo "You may see some irrelevant test failures if you have been unable"
1455 @echo "to build lib/Config.pm, or the Unicode data files."
1457 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \
1458 && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t </dev/tty
1462 test_harness test-harness: test_prep
1463 TESTFILE=harness $(RUN_TESTS) choose
1465 test_harness_notty: test_prep
1466 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1468 test_reonly test-reonly: test_prep_reonly
1469 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1472 # Porting tests (well-formedness of pod, manifest, etc)
1474 test_porting test-porting: test_prep
1475 cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1477 # Handy way to run perlbug -ok without having to install and run the
1478 # installed perlbug. We don't re-run the tests here - we trust the user.
1479 # Please *don't* use this unless all tests pass.
1480 # If you want to report test failures, use "make nok" instead.
1482 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1485 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1488 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1491 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1493 okfilenack: utilities
1494 $(RUN_PERL) -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1497 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1500 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1503 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1505 nokfilenack: utilities
1506 $(RUN_PERL) -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1511 echo $(c) | tr ' ' $(TRNL) >.clist
1514 echo $(h) | tr ' ' $(TRNL) >.hlist
1518 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1523 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1525 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1526 # If this runs make out of memory, delete /usr/include lines.
1530 $rm -f $firstmakefile
1532 # Now do any special processing required before building.
1537 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1542 rm -f y.tab.c y.tab.h
1545 # we are using two different yaccs in BS2000 Posix!
1546 byacc a2p.y >/dev/null 2>&1
1549 yacc a2p.y >/dev/null 2>&1
1552 if cmp -s y.tab.c a2p.c
1556 echo "a2p.y -> a2p.c" >&2
1559 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1560 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1561 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1564 # In case somebody yacc -d:ed the a2p.y.
1567 if cmp -s y.tab.h a2p.h
1571 echo "a2p.h -> a2p.h" >&2
1580 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1584 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1589 # ex: set ts=8 sts=4 sw=4 noet: