2 case $PERL_CONFIG_SH in
7 echo "Can't find config.sh."; exit 1
18 # if cross-compilation, the Makefile named accordingly
19 Makefile=Makefile-cross-$CROSS_NAME
20 . Cross/config-${CROSS_NAME}.sh
24 # H.Merijn Brand [17 Feb 2004]
25 # This comment is just to ensure that Configure will find variables that
26 # are removed/replaced in patches on blead, but are still needed in the
27 # 5.8.x, 5.6.x and 5.005.x maintainance tracks.
28 # metaconfig -m will scan all .SH files on this level (not deeper), and
29 # not in x2p and other subfolders. This file is as good as any .SH
34 # H.Merijn Brand [30 Oct 2004]
35 # Mentioned for the same reason for future reference
36 # #23434 $d_strlcat $d_strlcpy
38 : This forces SH files to create target in same directory as SH file.
39 : This is so that make depend always knows where to find SH derivatives.
41 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
44 linklibperl='$(LIBPERL)'
46 shrpldflags='$(LDDLFLAGS)'
48 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
49 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
52 # Prefix all runs of 'miniperl' and 'perl' with
53 # $ldlibpth so that ./perl finds *this* shared libperl.
54 case "$LD_LIBRARY_PATH" in
56 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
58 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
61 pldlflags="$cccdlflags"
63 case "${osname}${osvers}" in
66 lddlflags="-dynamic -undefined warning -framework System \
67 -compatibility_version 1 -current_version $patchlevel \
68 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
71 shrpldflags="${ldflags} -dynamiclib \
72 -compatibility_version \
73 ${api_revision}.${api_version}.${api_subversion} \
75 ${revision}.${patchlevel}.${subversion} \
76 -install_name \$(shrpdir)/\$@"
79 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
80 linklibperl="-L. -lperl"
85 netbsd*|freebsd[234]*|openbsd*|dragonfly*)
86 linklibperl="-L. -lperl"
89 linklibperl="-L. -lperl"
90 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
95 shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
97 3*) shrpldflags="$shrpldflags -e _nostart"
99 *) shrpldflags="$shrpldflags -Wl,-bnoentry"
102 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
103 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
104 linklibperl_nonshr='-lperl_nonshr'
107 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
109 3*) shrpldflags="$shrpldflags -e _nostart"
111 *) shrpldflags="$shrpldflags -b noentry"
114 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
115 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
116 linklibperl_nonshr='-lperl_nonshr'
121 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
124 shrpldflags='-W l,XPLINK,dll'
125 linklibperl='libperl.x'
126 DPERL_EXTERNAL_GLOB=''
129 case "$ldlibpthname" in
137 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
140 # Strip off any trailing :'s
141 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
147 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
152 # If there is a pre-existing $libperl from a previous
153 # installation, Linux needs to use LD_PRELOAD to
154 # override the LD_LIBRARY_PATH setting. See the
155 # INSTALL file, under "Building a shared perl library".
156 # If there is no pre-existing $libperl, we don't need
157 # to do anything further.
158 if test -f $archlib/CORE/$libperl; then
160 cat <<'EOT' > preload
164 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
168 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
171 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
178 static_ldflags='CCCDLFLAGS='
182 : Prepare dependency lists for Makefile.
185 for f in $dynamic_ext; do
186 : the dependency named here will never exist
187 base=`echo "$f" | sed 's/.*\///'`
188 this_target="lib/auto/$f/$base.$dlext"
189 dynamic_list="$dynamic_list $this_target"
191 : Parallel makes reveal that we have some interdependencies
193 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
194 $this_target: lib/auto/List/Util/Util.$dlext" ;;
195 Unicode/Normalize) extra_dep="$extra_dep
196 $this_target: uni.data" ;;
201 for f in $static_ext; do
202 base=`echo "$f" | sed 's/.*\///'`
203 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
207 for f in $nonxs_ext; do
208 base=`echo "$f" | sed 's/.*\///'`
209 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
216 dtrace_h='perldtrace.h'
217 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
218 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)'
222 echo "Extracting $Makefile (with variable substitutions)"
223 $spitshell >$Makefile <<!GROK!THIS!
225 # This file is derived from Makefile.SH. Any changes made here will
226 # be lost the next time you run Configure.
227 # Makefile is used to generate $firstmakefile. The only difference
228 # is that $firstmakefile has the dependencies filled in at the end.
236 mallocsrc = $mallocsrc
237 mallocobj = $mallocobj
241 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
246 # The following are mentioned only to make metaconfig include the
247 # appropriate questions in Configure. If you want to change these,
248 # edit config.sh instead, or specify --man1dir=/wherever on
249 # installman commandline.
251 scriptdir = $scriptdir
252 shrpdir = $archlibexp/CORE
253 privlib = $installprivlib
259 # The following are used to build and install shared libraries for
261 LDDLFLAGS = $lddlflags
262 SHRPLDFLAGS = $shrpldflags
263 CCDLFLAGS = $ccdlflags
265 PLDLFLAGS = $pldlflags
267 LLIBPERL= $linklibperl
268 LLIBPERL_NONSHR= $linklibperl_nonshr
271 # Static targets are ordinarily built without CCCDLFLAGS. However,
272 # if building a shared libperl.so that might later be linked into
273 # another application, then it might be appropriate to also build static
274 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
276 STATIC_LDFLAGS = $static_ldflags
278 # The following is used to include the current directory in
279 # the dynamic loader path you are building a shared libperl.
282 # Sometimes running an executable is an adventure.
285 # These variables may need to be manually set for non-Unix systems.
294 dynamic_ext = $dynamic_list
295 static_ext = $static_list
296 nonxs_ext = $nonxs_list
297 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
298 DYNALOADER = DynaLoader\$(OBJ_EXT)
300 libs = $perllibs $cryptlib
302 public = perl\$(EXE_EXT) utilities translators
304 shellflags = $shellflags
306 # This is set to MAKE=$make if your $make command doesn't
310 # Mention $gmake here so it gets probed for by Configure.
312 # If you're going to use valgrind and it can't be invoked as plain valgrind
313 # then you'll need to change this, or override it on the make command line.
320 FIRSTMAKEFILE = $firstmakefile
322 # Any special object files needed by this architecture, e.g. os2/os2.obj
325 .SUFFIXES: .c \$(OBJ_EXT) .i .s
330 # how to tr(anslate) newlines
337 INSTALLPREFIXEXP = $prefix
340 # not used by Makefile but by installperl;
341 # mentioned here so that metaconfig picks these up
345 case "${osname}:${osvers}" in
347 $spitshell >>$Makefile <<EOF
349 # Your locales are broken (osname $osname, osvers $osvers)
350 # and to avoid the numerous
351 # perl: warning: Setting locale failed.
352 # warnings during the build process we reset the locale variables.
363 ## In the following dollars and backticks do not need the extra backslash.
364 $spitshell >>$Makefile <<'!NO!SUBS!'
366 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
368 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
370 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
371 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
373 CONFIGPOD = lib/Config.pod
379 # if cross-compilation
380 $spitshell >>$Makefile <<!GROK!THIS!
381 CROSS_NAME = $CROSS_NAME
382 CROSS_LIB = xlib/$CROSS_NAME
384 CCCMD = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$@\` -I\$(CROSS_LIB)
385 CCCMDSRC = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$<\` -I\$(CROSS_LIB)
386 CONFIGPM = xlib/\$(CROSS_NAME)/Config.pm
387 CONFIGPOD = xlib/\$(CROSS_NAME)/Config.pod
390 xconfig.h: config_h.SH Cross/config-\$(CROSS_NAME).sh
391 CONFIG_SH=Cross/config-\$(CROSS_NAME).sh CONFIG_H=xconfig.h \$(SHELL) config_h.SH
392 #TODO \$(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib -MCross=\$(CROSS_NAME) config_h.PL "INST_VER=\$(INST_VER)" "CORE_DIR=\$(CROSS_LIB)" "CONFIG_H=xconfig.h"
393 cp xconfig.h \$(CROSS_LIB)/
394 cp xconfig.h \$(CROSS_LIB)/config.h
400 ## In the following dollars and backticks do not need the extra backslash.
401 $spitshell >>$Makefile <<'!NO!SUBS!'
403 private = preplibrary $(CONFIGPM) $(CONFIGPOD) lib/ExtUtils/Miniperl.pm git_version.h
405 # Files to be built with variable substitution before miniperl
407 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
408 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
410 shextract = Makefile cflags config.h makeaperl makedepend \
411 makedir myconfig writemain pod/Makefile
413 # Files to be built with variable substitution after miniperl is
414 # available. Dependencies handled manually below (for now).
416 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
417 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
419 # lib/lib.pm is not listed here because it has a rule of its own.
420 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
421 pod/pod2usage pod/podchecker pod/podselect
423 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
425 # Unicode data files generated by mktables
426 unidatafiles = lib/unicore/Canonical.pl lib/unicore/Exact.pl \
427 lib/unicore/Properties lib/unicore/Decomposition.pl \
428 lib/unicore/CombiningClass.pl lib/unicore/Name.pl lib/unicore/PVA.pl
430 # Directories of Unicode data files generated by mktables
431 unidatadirs = lib/unicore/To lib/unicore/lib
433 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
434 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
435 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
436 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
437 h5 = utf8.h warnings.h mydtrace.h
438 h = $(h1) $(h2) $(h3) $(h4) $(h5)
440 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
441 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
442 c3 = taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c globals.c
443 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c
444 c5 = $(madlysrc) $(mallocsrc)
446 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c perlmain.c opmini.c perlmini.c
448 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
449 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)
450 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)
451 obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) xsutils$(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)
453 mini_obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
454 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
455 obj = $(ndt_obj) $(DTRACE_O)
463 -errchk=parentheses \
467 -erroff=E_ASSIGN_NARROW_CONV \
468 -erroff=E_BAD_PTR_CAST \
469 -erroff=E_BAD_PTR_CAST_ALIGN \
470 -erroff=E_BAD_PTR_INT_COMBINATION \
471 -erroff=E_BAD_SIGN_EXTEND \
472 -erroff=E_BLOCK_DECL_UNUSED \
473 -erroff=E_CASE_FALLTHRU \
474 -erroff=E_CONST_EXPR \
475 -erroff=E_CONSTANT_CONDITION \
476 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
477 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
478 -erroff=E_EXPR_NULL_EFFECT \
479 -erroff=E_FALSE_LOGICAL_EXPR \
480 -erroff=E_INCL_NUSD \
481 -erroff=E_LOOP_EMPTY \
482 -erroff=E_MAIN_PARAM \
483 -erroff=E_POINTER_TO_OBJECT \
484 -erroff=E_PTRDIFF_OVERFLOW \
485 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
486 -erroff=E_STATIC_UNUSED \
487 -erroff=E_TRUE_LOGICAL_EXPR
490 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
491 -D__builtin_va_list=va_list \
492 -Dsigjmp_buf=jmp_buf \
516 $(CCCMD) $(PLDLFLAGS) $*.c
519 $(CCCMDSRC) -E $*.c > $*.i
524 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) miniperl extra.pods $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
526 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
528 .PHONY: all translators utilities
530 lib/Config_git.pl git_version.h: miniperl$(EXE_EXT) make_patchnum.pl
531 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_patchnum.pl
533 # make sure that we recompile perl.c if the git version changes
534 perl$(OBJ_EXT): git_version.h
536 translators: miniperl$(EXE_EXT) $(CONFIGPM) FORCE
537 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
539 utilities: miniperl$(EXE_EXT) $(CONFIGPM) $(plextract) lib/lib.pm FORCE
540 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
543 # This is now done by installman only if you actually want the man pages.
544 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
546 # Phony target to force checking subdirectories.
547 # Apparently some makes require an action for the FORCE target.
552 $spitshell >>$Makefile <<!GROK!THIS!
554 # We do a copy of the op.c instead of a symlink because gcc gets huffy
555 # if we have a symlink forest to another disk (it complains about too many
556 # levels of symbolic links, even if we have only two)
560 \$(CPS) op.c opmini.c
562 opmini\$(OBJ_EXT): opmini.c
563 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
567 \$(CPS) perl.c perlmini.c
569 perlmini\$(OBJ_EXT): perlmini.c
570 \$(CCCMD) \$(PLDLFLAGS) $DPERL_IS_MINIPERL perlmini.c
572 globals\$(OBJ_EXT): uudmap.h
574 uudmap.h: generate_uudmap\$(HOST_EXE_EXT)
575 \$(RUN) ./generate_uudmap\$(HOST_EXE_EXT) >uudmap.h
577 generate_uudmap\$(HOST_EXE_EXT): generate_uudmap\$(OBJ_EXT)
578 \$(CC) -o generate_uudmap\$(EXE_EXT) \$(LDFLAGS) generate_uudmap\$(OBJ_EXT) \$(libs)
581 $spitshell >>$Makefile <<'!NO!SUBS!'
582 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
583 $(CCCMD) $(PLDLFLAGS) $*.c
585 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
586 sh writemain $(DYNALOADER) $(static_ext) > perlmain.c
588 perlmain$(OBJ_EXT): perlmain.c
589 $(CCCMD) $(PLDLFLAGS) $*.c
591 # The file ext.libs is a list of libraries that must be linked in
592 # for static extensions, e.g. -lm -lgdbm, etc. The individual
593 # static extension Makefile's add to it.
594 ext.libs: $(static_ext)
595 -@test -f ext.libs || touch ext.libs
599 # How to build libperl. This is still rather convoluted.
600 # Load up custom Makefile.SH fragment for shared loading and executables:
603 Makefile_s="$osname/Makefile.SHs"
609 $spitshell >>$Makefile <<!GROK!THIS!
611 # In AIX we need to change this for building Perl itself from
612 # its earlier definition (which is for building external
613 # extensions *after* Perl has been built and installed)
614 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
617 case "$useshrplib" in
619 $spitshell >>$Makefile <<'!NO!SUBS!'
621 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
622 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
624 $(LIBPERL_NONSHR): $(obj)
625 $(RMS) $(LIBPERL_NONSHR)
626 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
628 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
629 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
630 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
632 MINIPERLEXP = $(MINIPERL_NONSHR)
634 LIBPERLEXPORT = perl.exp
640 $spitshell >>$Makefile <<'!NO!SUBS!'
641 MINIPERLEXP = miniperl$(EXE_EXT)
643 PERLEXPORT = perl.exp
648 $spitshell >>$Makefile <<'!NO!SUBS!'
649 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
650 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp
655 $spitshell >>$Makefile <<'!NO!SUBS!'
656 MINIPERLEXP = miniperl
658 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
659 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
664 $spitshell >>$Makefile <<'!NO!SUBS!'
665 cygwin.c: cygwin/cygwin.c
666 $(LNS) cygwin/cygwin.c
668 LIBPERL_NONSHR = libperl$(LIB_EXT)
670 $(LIBPERL_NONSHR): $(obj)
671 $(RMS) $(LIBPERL_NONSHR)
672 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
678 if test -s $Makefile_s ; then
680 $spitshell >>$Makefile <<!GROK!THIS!
682 Makefile: $Makefile_s
687 $spitshell >>$Makefile <<'!NO!SUBS!'
688 $(DTRACE_H): perldtrace.d
689 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H)
691 mydtrace.h: $(DTRACE_H)
698 $spitshell >>$Makefile <<'!NO!SUBS!'
699 $(DTRACE_O): perldtrace.d
700 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
705 $spitshell >>$Makefile <<'!NO!SUBS!'
706 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
708 case "$useshrplib" in
710 $spitshell >>$Makefile <<'!NO!SUBS!'
712 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
716 $spitshell >>$Makefile <<'!NO!SUBS!'
717 rm -f libperl$(OBJ_EXT)
718 mv $@ libperl$(OBJ_EXT)
719 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
725 $spitshell >>$Makefile <<'!NO!SUBS!'
727 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
728 @$(ranlib) $(LIBPERL)
732 $spitshell >>$Makefile <<'!NO!SUBS!'
734 # How to build executables.
736 # The $& notation tells Sequent machines that it can do a parallel make,
737 # and is harmless otherwise.
738 # The miniperl -w -MExporter line is a basic cheap test to catch errors
739 # before make goes on to run preplibrary and then MakeMaker on extensions.
740 # This is very handy because later errors are often caused by miniperl
741 # build problems but that's not obvious to the novice.
742 # The Module used here must not depend on Config or any extensions.
746 case "${osname}${osvers}" in
748 $spitshell >>$Makefile <<'!NO!SUBS!'
749 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
750 $(CC) -o miniperl$(EXE_EXT) $(CLDFLAGS) \
752 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
753 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
757 $spitshell >>$Makefile <<'!NO!SUBS!'
758 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) perlmini$(OBJ_EXT) opmini$(OBJ_EXT)
759 $(CC) -o miniperl$(EXE_EXT) $(mini_obj) \
760 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
761 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
767 *) case "$ldflags" in
768 *"-flat_namespace"*) ;;
769 *) # to allow opmini.o to override stuff in libperl.dylib
770 $spitshell >>$Makefile <<!NO!SUBS!
771 NAMESPACEFLAGS = -force_flat_namespace
777 $spitshell >>$Makefile <<'!NO!SUBS!'
778 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
780 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl$(EXE_EXT) \
782 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
783 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
787 $spitshell >>$Makefile <<'!NO!SUBS!'
788 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
790 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl$(EXE_EXT) \
792 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
793 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
798 $spitshell >>$Makefile <<'!NO!SUBS!'
800 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
802 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
804 # Purify/Quantify Perls.
806 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
807 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
809 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
810 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
812 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
813 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
815 # Valgrind perl (currently Linux only)
817 perl.valgrind.config: config.sh
818 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
819 @$(MAKE) perl.config.dashg
820 @echo "Checking usemymalloc='n' in config.sh..."
821 @grep "^usemymalloc=" config.sh
822 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
823 @echo "And of course you have to have valgrind..."
824 $(VALGRIND) ./perl -e 1 2>/dev/null || exit 1
826 # Third Degree Perl (Tru64 only)
829 @echo "Checking optimize='-g' in config.sh..."
830 @grep "^optimize=" config.sh
831 @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1
833 perl.third.config: config.sh
834 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
835 @$(MAKE) perl.config.dashg
836 @echo "Checking usemymalloc='n' in config.sh..."
837 @grep "^usemymalloc=" config.sh
838 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
840 perl.third: /usr/bin/atom perl.third.config perl
841 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
842 @echo "Now you may run perl.third and then study perl.3log."
844 # Pixie Perls (Tru64 and IRIX only)
846 perl.pixie.config: config.sh
847 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
848 @$(MAKE) perl.config.dashg
850 perl.pixie.atom: /usr/bin/atom perl
851 atom -tool pixie -L. -all -toolargs="-quiet" perl
853 perl.pixie.irix: perl
856 perl.pixie: /usr/bin/pixie perl.pixie.config perl
857 if test -x /usr/bin/atom; then \
858 $(MAKE) perl.pixie.atom; \
860 $(MAKE) perl.pixie.irix; \
862 @echo "Now you may run perl.pixie and then run pixie."
867 @echo "Checking optimize='-pg' in config.sh..."
868 @grep "^optimize=" config.sh
869 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
871 perl.gprof.config: config.sh
872 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
873 @$(MAKE) perl.config.dashpg
875 perl.gprof: /usr/bin/gprof perl.gprof.config
877 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
878 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
883 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
884 @echo "Checking gccversion in config.sh..."
885 @grep "^gccversion=" config.sh
886 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
887 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
888 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
889 @grep "^ccflags=" config.sh
890 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
892 perl.gcov: perl.config.gcov
894 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
895 @echo "Now you may run perl.gcov and then run gcov some.c."
897 # Microperl. This is just a convenience thing if one happens to
898 # build also the full Perl and therefore the real big Makefile:
899 # usually one should manually explicitly issue the below command.
903 $(MAKE) -f Makefile.micro
909 # Some environment have no system(), which mkpport uses.
910 # Let's try running the commands with shell.
913 $spitshell >>$Makefile <<!GROK!THIS!
915 makeppport: miniperl\$(EXE_EXT) \$(CONFIGPM)
916 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
917 (cd ext/Devel-PPPort && `pwd`/run.sh ../../miniperl$(EXE_EXT) -I../../lib \$\$f); \
923 $spitshell >>$Makefile <<'!NO!SUBS!'
925 makeppport: miniperl$(EXE_EXT) $(CONFIGPM)
926 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport
932 $spitshell >>$Makefile <<'!NO!SUBS!'
934 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
935 # test -d lib/auto || mkdir lib/auto
936 # We need to autosplit in two steps because VOS can't handle so many args
939 preplibrary: miniperl$(EXE_EXT) $(CONFIGPM) lib/lib.pm $(PREPLIBRARY_LIBPERL)
940 @sh ./makedir lib/auto
941 @echo " AutoSplitting perl library"
942 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib -MAutoSplit -MFile::Find -e 'find ({no_chdir=>1, wanted => sub {autosplit_lib_modules($$_) if /\.pm$$/}}, "lib")'
945 $(CONFIGPM_FROM_CONFIG_SH) $(CONFIGPOD): config.sh miniperl$(EXE_EXT) configpm Porting/Glossary lib/Config_git.pl
946 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib configpm
948 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl $(CONFIGPM)
949 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) minimod.pl > lib/ExtUtils/Miniperl.pm
951 lib/re.pm: ext/re/re.pm
953 cp ext/re/re.pm lib/re.pm
955 $(plextract): miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p
957 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -I`pwd`/lib $@.PL
959 x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p.PL
960 cd x2p; $(LDLIBPTH) $(MAKE) s2p
962 lib/lib.pm: miniperl$(EXE_EXT) $(CONFIGPM)
964 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib lib/lib_pm.PL
966 unidatafiles $(unidatafiles): uni.data
968 uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables
969 cd lib/unicore && $(LDLIBPTH) $(RUN) ../../miniperl$(EXE_EXT) -I../../lib mktables -w
972 extra.pods: miniperl$(EXE_EXT)
973 -@test ! -f extra.pods || rm -f `cat extra.pods`
975 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
976 nx=`echo $$x | sed -e "s/README\.//"`; \
977 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
978 echo "pod/perl"$$nx".pod" >> extra.pods ; \
980 -@rm -f pod/perlvms.pod
981 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
982 -@rm -f pod/perldelta.pod
983 -@test -f pod/perl5110delta.pod && cd pod && $(LNS) perl5110delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
985 extras.make: perl$(EXE_EXT)
986 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
988 extras.test: perl$(EXE_EXT)
989 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
991 extras.install: perl$(EXE_EXT)
992 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
994 .PHONY: install install-strip install-all install-verbose install-silent \
995 no-install install.perl install.man install.html
997 META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
998 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib Porting/makemeta
1001 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
1003 install install-all:
1004 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
1007 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
1010 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
1013 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
1015 # Set this to an empty string to avoid an attempt of rebuild before install
1016 INSTALL_DEPENDENCE = all
1018 install.perl: $(INSTALL_DEPENDENCE) installperl
1019 $(LDLIBPTH) $(RUN) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1020 -@test ! -s extras.lst || $(MAKE) extras.install
1022 install.man: all installman
1023 $(LDLIBPTH) $(RUN) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1025 # XXX Experimental. Hardwired values, but useful for testing.
1026 # Eventually Configure could ask for some of these values.
1027 install.html: all installhtml
1028 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1029 $(LDLIBPTH) $(RUN) ./perl installhtml \
1030 --podroot=. --podpath=. --recurse \
1031 --htmldir=$(privlib)/html \
1032 --htmlroot=$(privlib)/html \
1033 --splithead=pod/perlipc \
1034 --splititem=pod/perlfunc \
1035 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
1036 --ignore=Porting/Maintainers.pm,Porting/patching.pod,Porting/pumpkin.pod,Porting/repository.pod \
1040 # I now supply perly.c with the kits, so the following section is
1041 # used only if you force bison to run by saying
1043 # You normally shouldn't remake perly.[ch].
1048 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1050 # this outputs perly.h, perly.act and perly.tab
1054 # We don't want to regenerate perly.c and perly.h, but they might
1055 # appear out-of-date after a patch is applied or a new distribution is
1063 # No compat3.sym here since and including the 5.004_50.
1064 # No interp.sym since 5.005_03.
1065 SYM = global.sym globvar.sym perlio.sym pp.sym
1067 SYMH = perlvars.h intrpvar.h
1071 # The following files are generated automatically
1072 # autodoc.pl: pod/perlapi.pod pod/perlintern.pod
1073 # embed.pl: proto.h embed.h embedvar.h global.sym
1074 # perlapi.h perlapi.c
1075 # [* embed.pl needs pp.sym generated by opcode.pl! *]
1076 # keywords.pl: keywords.h
1077 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
1078 # regcomp.pl: regnodes.h
1079 # warnings.pl: warnings.h lib/warnings.pm
1080 # The correct versions should be already supplied with the perl kit,
1081 # in case you don't have perl available.
1082 # To force them to be regenerated, run
1084 # with your existing copy of perl
1085 # (make regen_headers is kept for backwards compatibility)
1087 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
1088 embed.h embedvar.h global.sym \
1089 pod/perlintern.pod pod/perlapi.pod \
1090 perlapi.h perlapi.c regnodes.h \
1091 warnings.h lib/warnings.pm
1093 .PHONY: regen_headers regen_pods regen_all
1098 regen_headers: FORCE
1102 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
1104 regen_all: regen regen_pods
1106 .PHONY: manisort manicheck
1109 LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
1110 LC_ALL=C sort -fdo MANIFEST MANIFEST)
1113 perl Porting/manicheck
1116 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1117 # automatically get built. There should ordinarily be no need to change
1118 # any of this part of makefile.
1120 # The dummy dependency is a place holder in case $(dynamic_ext) or
1121 # $(static_ext) is empty.
1123 # DynaLoader may be needed for extensions that use Makefile.PL.
1125 $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
1126 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1128 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
1129 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1131 s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
1132 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1134 n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary FORCE
1135 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1138 $spitshell >>$Makefile <<EOF
1142 $spitshell >>$Makefile <<'!NO!SUBS!'
1146 @eval `$(LDLIBPTH) $(RUN) ./perl -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1148 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1149 realclean _realcleaner clobber _clobber \
1150 distclean veryclean _verycleaner \
1151 cleanup_unpacked_files unpack_files
1153 clean: cleanup_unpacked_files _tidy _mopup
1155 realclean: cleanup_unpacked_files _realcleaner _mopup
1156 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1159 -@rm -f Cross/run-* Cross/to-* Cross/from-*
1161 rm -f config.sh cppstdin Policy.sh extras.lst
1163 clobber: cleanup_unpacked_files _realcleaner _mopup _clobber
1167 # Like distclean but also removes emacs backups and *.orig.
1168 veryclean: cleanup_unpacked_files _verycleaner _mopup _clobber
1169 -@rm -f Obsolete Wanted
1171 # Do not 'make _mopup' directly.
1173 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c uudmap.h generate_uudmap$(EXE_EXT)
1175 -@test -f extra.pods && rm -f `cat extra.pods`
1176 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1177 -rm -f perl.exp ext.libs extra.pods uni.data opmini.o perlmini.o
1178 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1179 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
1180 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
1181 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
1182 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
1183 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1184 -rm -f perl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
1185 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
1186 -rm -f config.arch config.over $(DTRACE_H)
1188 # Do not 'make _tidy' directly.
1190 -cd pod; $(LDLIBPTH) $(MAKE) clean
1191 -cd utils; $(LDLIBPTH) $(MAKE) clean
1192 -cd x2p; $(LDLIBPTH) $(MAKE) clean
1193 -rm -f lib/Config_git.pl git_version.h
1194 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1195 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
1199 -cd os2; rm -f Makefile
1200 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1201 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1202 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
1203 -@if test -f miniperl$(EXE_EXT) ; then \
1204 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1205 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
1210 rm -f realclean.sh veryclean.sh
1211 -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport --clean
1213 # Some systems do not support "?", so keep these files separate.
1215 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1216 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1217 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1218 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1219 rm -rf $(addedbyconf)
1220 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1222 rm -rf $(unidatafiles) $(unidatadirs)
1224 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1225 rm -f h2ph.man pstruct
1227 rm -f preload lib/re.pm
1228 rm -rf lib/Encode lib/Compress lib/Hash lib/re
1229 rm -rf lib/TAP lib/Module/Pluggable lib/App
1231 rm -rf lib/IO/Compress lib/IO/Uncompress
1232 rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1233 rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1234 rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1237 -rmdir lib/Filter/Util lib/IO/Socket
1238 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1239 -rmdir lib/threads lib/XS
1240 -rmdir lib/CPANPLUS/Dist/Build/t/dummy-*
1241 -rmdir lib/CPANPLUS/t/dummy-cpanplus lib/CPANPLUS/t/dummy-localmirror
1242 -rm -f lib/ExtUtils/CBuilder/t/libcompilet.dll.a
1243 -rm -f lib/ExtUtils/ParseXS/t/libXSTest.dll.a
1246 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1247 @$(LDLIBPTH) $(MAKE) _cleaner2
1250 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1251 @$(LDLIBPTH) $(MAKE) _cleaner2
1252 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1257 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1261 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1263 # Need to unset during recursion to go out of loop.
1264 # The README below ensures that the dependency list is never empty and
1265 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1267 MAKEDEPEND = Makefile makedepend
1269 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1270 $(MAKE) depend MAKEDEPEND=
1272 config.h: config_h.SH config.sh
1273 $(SHELL) config_h.SH
1275 # When done, touch perlmain.c so that it doesn't get remade each time.
1278 sh ./makedepend MAKE=$(MAKE)
1279 - test -s perlmain.c && touch perlmain.c
1280 cd x2p; $(MAKE) depend
1282 # Cannot postpone this until $firstmakefile is ready ;-)
1283 makedepend: makedepend.SH config.sh
1286 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1287 test_tty test-tty _test_tty test_notty test-notty _test_notty \
1288 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1289 test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
1290 test.third check.third utest.third ucheck.third test_notty.third \
1291 test.deparse test_notty.deparse test_harness test_harness_notty \
1292 minitest coretest test.taintwarn test-reonly
1294 # Cannot delegate rebuilding of t/perl to make
1295 # to allow interlaced test and minitest
1299 _test_prep: unpack_files
1300 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1302 # Architecture-neutral stuff:
1304 test_prep_pre: preplibrary utilities $(nonxs_ext)
1306 test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1307 PERL=./perl $(MAKE) _test_prep
1310 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) $(TEST_FILES) </dev/tty
1313 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) $(TEST_FILES)
1316 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -u -m
1318 cleanup_unpacked_files:
1319 -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -c
1321 # The second branch is for testing without a tty or controlling terminal,
1324 if (true </dev/tty) >/dev/null 2>&1; then \
1325 $(MAKE) TEST_ARGS='$(TEST_ARGS)' TESTFILE=$(TESTFILE) _test_tty ; \
1327 $(MAKE) TEST_ARGS='$(TEST_ARGS)' TESTFILE=$(TESTFILE) _test_notty ; \
1329 @echo "Ran tests" > t/rantests
1331 test check: test_prep
1332 PERL=./perl $(MAKE) _test
1335 PERL=./perl $(MAKE) _test_tty
1337 test_notty: test_prep
1338 PERL=./perl $(MAKE) _test_notty
1340 utest ucheck test.utf8 check.utf8: test_prep
1341 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1344 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1346 test-prep: test_prep
1350 test-notty: test_notty
1354 test.torture torturetest: test_prep
1355 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1357 # Targets for UTF16 testing:
1359 minitest.utf16: minitest.prep
1360 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1361 && $(LDLIBPTH) $(RUN) ./perl TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t mro/*.t </dev/tty
1363 test.utf16 check.utf16: test_prep
1364 PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1366 utest.utf16 ucheck.utf16: test_prep
1367 PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1369 # Targets for valgrind testing:
1371 test_prep.valgrind: test_prep perl.valgrind
1372 PERL=./perl $(MAKE) _test_prep
1374 test.valgrind check.valgrind: test_prep perl.valgrind.config
1375 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(MAKE) _test
1377 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config
1378 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1380 test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1381 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1383 # Targets for Third Degree testing.
1385 test_prep.third: test_prep perl.third
1386 PERL=./perl.third $(MAKE) _test_prep
1388 test.third check.third: test_prep.third perl.third
1389 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1391 utest.third ucheck.third: test_prep.third perl.third
1392 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1394 test_notty.third: test_prep.third perl.third
1395 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1397 # Targets for Deparse testing.
1399 test.deparse: test_prep
1400 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1402 test_notty.deparse: test_prep
1403 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1405 # Targets to run the test suite with -t
1407 test.taintwarn: test_prep
1408 PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1411 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1412 $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
1414 @echo "You may see some irrelevant test failures if you have been unable"
1415 @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
1418 # Can't depend on lib/Config.pm because that might be where miniperl
1420 minitest: miniperl$(EXE_EXT) lib/re.pm minitest.prep
1421 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1422 && $(LDLIBPTH) $(RUN) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t mro/*.t </dev/tty
1426 test_harness: test_prep
1427 PERL=./perl $(MAKE) TESTFILE=harness _test
1429 test_harness_notty: test_prep
1430 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1432 test-reonly: test_prep
1433 PERL=./perl TEST_ARGS='-re \\bpat\\b \\breg \\bre\b \\bsubst \\brxcode' $(MAKE) TESTFILE=harness _test
1435 # Handy way to run perlbug -ok without having to install and run the
1436 # installed perlbug. We don't re-run the tests here - we trust the user.
1437 # Please *don't* use this unless all tests pass.
1438 # If you want to report test failures, use "make nok" instead.
1440 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1443 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1446 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1449 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1451 okfilenack: utilities
1452 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1455 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1458 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1461 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1463 nokfilenack: utilities
1464 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1466 .PHONY: clist hlist shlist pllist
1469 echo $(c) | tr ' ' $(TRNL) >.clist
1472 echo $(h) | tr ' ' $(TRNL) >.hlist
1475 echo $(sh) | tr ' ' $(TRNL) >.shlist
1478 echo $(pl) | tr ' ' $(TRNL) >.pllist
1480 Makefile: Makefile.SH ./config.sh
1481 $(SHELL) Makefile.SH
1485 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1488 elc: emacs/cperl-mode.elc
1490 emacs/cperl-mode.elc: emacs/cperl-mode.el
1491 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1493 .PHONY: etags ctags tags
1497 TAGS: emacs/cperl-mode.elc
1500 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1501 # This may also fail if . is in the head of the path, since perl will
1504 perl emacs/e2ctags.pl TAGS > tags
1507 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1509 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1510 # If this runs make out of memory, delete /usr/include lines.
1517 $ln Makefile ../Makefile
1520 $rm -f $firstmakefile
1522 # Now do any special processing required before building.
1527 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1532 rm -f y.tab.c y.tab.h
1535 # we are using two different yaccs in BS2000 Posix!
1536 byacc a2p.y >/dev/null 2>&1
1539 yacc a2p.y >/dev/null 2>&1
1542 if cmp -s y.tab.c a2p.c
1546 echo "a2p.y -> a2p.c" >&2
1549 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1550 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1551 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1554 # In case somebody yacc -d:ed the a2p.y.
1557 if cmp -s y.tab.h a2p.h
1561 echo "a2p.h -> a2p.h" >&2
1570 # Do nothing in VM/ESA.
1573 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1577 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1582 # ex: set ts=8 sts=4 sw=4 noet: