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" ;;
197 Text/ParseWords) extra_dep="$extra_dep
198 $this_target: lib/auto/Scalar/Util.$dlext" ;;
203 for f in $static_ext; do
204 base=`echo "$f" | sed 's/.*\///'`
205 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
206 : Parallel makes reveal that we have some interdependencies
207 this_target="lib/auto/$f/$base\$(LIB_EXT)"
209 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
210 $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
211 Unicode/Normalize) extra_dep="$extra_dep
212 $this_target: uni.data" ;;
217 for f in $nonxs_ext; do
218 p=`echo "$f" | tr / -`
219 nonxs_list="$nonxs_list ext/$p/pm_to_blib"
226 dtrace_h='perldtrace.h'
227 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
228 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)'
232 echo "Extracting $Makefile (with variable substitutions)"
233 $spitshell >$Makefile <<!GROK!THIS!
235 # This file is derived from Makefile.SH. Any changes made here will
236 # be lost the next time you run Configure.
237 # Makefile is used to generate $firstmakefile. The only difference
238 # is that $firstmakefile has the dependencies filled in at the end.
246 mallocsrc = $mallocsrc
247 mallocobj = $mallocobj
251 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
256 # The following are mentioned only to make metaconfig include the
257 # appropriate questions in Configure. If you want to change these,
258 # edit config.sh instead, or specify --man1dir=/wherever on
259 # installman commandline.
261 scriptdir = $scriptdir
262 shrpdir = $archlibexp/CORE
263 privlib = $installprivlib
269 # The following are used to build and install shared libraries for
271 LDDLFLAGS = $lddlflags
272 SHRPLDFLAGS = $shrpldflags
273 CCDLFLAGS = $ccdlflags
275 PLDLFLAGS = $pldlflags
277 LLIBPERL= $linklibperl
278 LLIBPERL_NONSHR= $linklibperl_nonshr
281 # Static targets are ordinarily built without CCCDLFLAGS. However,
282 # if building a shared libperl.so that might later be linked into
283 # another application, then it might be appropriate to also build static
284 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
286 STATIC_LDFLAGS = $static_ldflags
288 # The following is used to include the current directory in
289 # the dynamic loader path you are building a shared libperl.
292 # Sometimes running an executable is an adventure.
295 # These variables may need to be manually set for non-Unix systems.
304 dynamic_ext = $dynamic_list
305 static_ext = $static_list
306 nonxs_ext = $nonxs_list
307 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
308 DYNALOADER = DynaLoader\$(OBJ_EXT)
310 libs = $perllibs $cryptlib
312 public = perl\$(EXE_EXT) utilities translators
314 shellflags = $shellflags
316 # This is set to MAKE=$make if your $make command doesn't
320 # Mention $gmake here so it gets probed for by Configure.
322 # If you're going to use valgrind and it can't be invoked as plain valgrind
323 # then you'll need to change this, or override it on the make command line.
330 FIRSTMAKEFILE = $firstmakefile
332 # Any special object files needed by this architecture, e.g. os2/os2.obj
335 .SUFFIXES: .c \$(OBJ_EXT) .i .s
340 # how to tr(anslate) newlines
347 INSTALLPREFIXEXP = $prefix
350 # not used by Makefile but by installperl;
351 # mentioned here so that metaconfig picks these up
355 case "${osname}:${osvers}" in
357 $spitshell >>$Makefile <<EOF
359 # Your locales are broken (osname $osname, osvers $osvers)
360 # and to avoid the numerous
361 # perl: warning: Setting locale failed.
362 # warnings during the build process we reset the locale variables.
373 ## In the following dollars and backticks do not need the extra backslash.
374 $spitshell >>$Makefile <<'!NO!SUBS!'
376 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
378 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
380 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
381 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
383 CONFIGPOD = lib/Config.pod
389 # if cross-compilation
390 $spitshell >>$Makefile <<!GROK!THIS!
391 CROSS_NAME = $CROSS_NAME
392 CROSS_LIB = xlib/$CROSS_NAME
394 CCCMD = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$@\` -I\$(CROSS_LIB)
395 CCCMDSRC = \`sh \$(shellflags) cflags-cross-$CROSS_NAME "optimize='\$(OPTIMIZE)'" \$<\` -I\$(CROSS_LIB)
396 CONFIGPM = xlib/\$(CROSS_NAME)/Config.pm
397 CONFIGPOD = xlib/\$(CROSS_NAME)/Config.pod
400 xconfig.h: config_h.SH Cross/config-\$(CROSS_NAME).sh
401 CONFIG_SH=Cross/config-\$(CROSS_NAME).sh CONFIG_H=xconfig.h \$(SHELL) config_h.SH
402 #TODO \$(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib -MCross=\$(CROSS_NAME) config_h.PL "INST_VER=\$(INST_VER)" "CORE_DIR=\$(CROSS_LIB)" "CONFIG_H=xconfig.h"
403 cp xconfig.h \$(CROSS_LIB)/
404 cp xconfig.h \$(CROSS_LIB)/config.h
410 ## In the following dollars and backticks do not need the extra backslash.
411 $spitshell >>$Makefile <<'!NO!SUBS!'
413 private = preplibrary $(CONFIGPM) $(CONFIGPOD) lib/ExtUtils/Miniperl.pm git_version.h
415 # Files to be built with variable substitution before miniperl
417 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
418 myconfig.SH writemain.SH pod/Makefile.SH
420 shextract = Makefile cflags config.h makeaperl makedepend \
421 makedir myconfig writemain pod/Makefile
423 # Files to be built with variable substitution after miniperl is
424 # available. Dependencies handled manually below (for now).
426 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
427 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
429 # lib/lib.pm is not listed here because it has a rule of its own.
430 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
431 pod/pod2usage pod/podchecker pod/podselect
433 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
435 # Unicode data files generated by mktables
436 unidatafiles = lib/unicore/Canonical.pl lib/unicore/Exact.pl \
437 lib/unicore/Properties lib/unicore/Decomposition.pl \
438 lib/unicore/CombiningClass.pl lib/unicore/Name.pl lib/unicore/PVA.pl
440 # Directories of Unicode data files generated by mktables
441 unidatadirs = lib/unicore/To lib/unicore/lib
443 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
444 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
445 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
446 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
447 h5 = utf8.h warnings.h mydtrace.h
448 h = $(h1) $(h2) $(h3) $(h4) $(h5)
450 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
451 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
452 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c
453 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c
454 c5 = $(madlysrc) $(mallocsrc)
456 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c perlmain.c opmini.c perlmini.c
458 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
459 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)
460 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)
461 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)
463 mini_obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
464 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
465 obj = $(ndt_obj) $(DTRACE_O)
467 perltoc_pod_prereqs = extra.pods pod/perlapi.pod pod/perldelta.pod pod/perlintern.pod pod/perlmodlib.pod
468 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
478 -errchk=parentheses \
482 -erroff=E_ASSIGN_NARROW_CONV \
483 -erroff=E_BAD_PTR_CAST \
484 -erroff=E_BAD_PTR_CAST_ALIGN \
485 -erroff=E_BAD_PTR_INT_COMBINATION \
486 -erroff=E_BAD_SIGN_EXTEND \
487 -erroff=E_BLOCK_DECL_UNUSED \
488 -erroff=E_CASE_FALLTHRU \
489 -erroff=E_CONST_EXPR \
490 -erroff=E_CONSTANT_CONDITION \
491 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
492 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
493 -erroff=E_EXPR_NULL_EFFECT \
494 -erroff=E_FALSE_LOGICAL_EXPR \
495 -erroff=E_INCL_NUSD \
496 -erroff=E_LOOP_EMPTY \
497 -erroff=E_MAIN_PARAM \
498 -erroff=E_POINTER_TO_OBJECT \
499 -erroff=E_PTRDIFF_OVERFLOW \
500 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
501 -erroff=E_STATIC_UNUSED \
502 -erroff=E_TRUE_LOGICAL_EXPR
505 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
506 -D__builtin_va_list=va_list \
507 -Dsigjmp_buf=jmp_buf \
531 $(CCCMD) $(PLDLFLAGS) $*.c
534 $(CCCMDSRC) -E $*.c > $*.i
539 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) miniperl $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
541 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
543 .PHONY: all translators utilities
545 lib/Config_git.pl git_version.h: miniperl$(EXE_EXT) make_patchnum.pl
546 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_patchnum.pl
548 # make sure that we recompile perl.c if the git version changes
549 perl$(OBJ_EXT): git_version.h
551 translators: miniperl$(EXE_EXT) $(CONFIGPM) $(dynamic_ext) FORCE
552 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
554 utilities: miniperl$(EXE_EXT) $(CONFIGPM) $(plextract) lib/lib.pm FORCE
555 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
558 # This is now done by installman only if you actually want the man pages.
559 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
561 # Phony target to force checking subdirectories.
562 # Apparently some makes require an action for the FORCE target.
567 $spitshell >>$Makefile <<!GROK!THIS!
569 # We do a copy of the op.c instead of a symlink because gcc gets huffy
570 # if we have a symlink forest to another disk (it complains about too many
571 # levels of symbolic links, even if we have only two)
575 \$(CPS) op.c opmini.c
577 opmini\$(OBJ_EXT): opmini.c
578 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
582 \$(CPS) perl.c perlmini.c
584 perlmini\$(OBJ_EXT): perlmini.c
585 \$(CCCMD) \$(PLDLFLAGS) $DPERL_IS_MINIPERL perlmini.c
587 globals\$(OBJ_EXT): uudmap.h bitcount.h
589 uudmap.h bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
590 \$(RUN) ./generate_uudmap\$(HOST_EXE_EXT) uudmap.h bitcount.h
592 generate_uudmap\$(HOST_EXE_EXT): generate_uudmap\$(OBJ_EXT)
593 \$(CC) -o generate_uudmap\$(EXE_EXT) \$(LDFLAGS) generate_uudmap\$(OBJ_EXT) \$(libs)
596 $spitshell >>$Makefile <<'!NO!SUBS!'
597 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
598 $(CCCMD) $(PLDLFLAGS) $*.c
600 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
601 sh writemain $(DYNALOADER) $(static_ext) > perlmain.c
603 perlmain$(OBJ_EXT): perlmain.c
604 $(CCCMD) $(PLDLFLAGS) $*.c
606 # The file ext.libs is a list of libraries that must be linked in
607 # for static extensions, e.g. -lm -lgdbm, etc. The individual
608 # static extension Makefile's add to it.
609 ext.libs: $(static_ext)
610 -@test -f ext.libs || touch ext.libs
614 # How to build libperl. This is still rather convoluted.
615 # Load up custom Makefile.SH fragment for shared loading and executables:
618 Makefile_s="$osname/Makefile.SHs"
624 $spitshell >>$Makefile <<!GROK!THIS!
626 # In AIX we need to change this for building Perl itself from
627 # its earlier definition (which is for building external
628 # extensions *after* Perl has been built and installed)
629 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
632 case "$useshrplib" in
634 $spitshell >>$Makefile <<'!NO!SUBS!'
636 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
637 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
639 $(LIBPERL_NONSHR): $(obj)
640 $(RMS) $(LIBPERL_NONSHR)
641 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
643 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
644 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
645 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
647 MINIPERLEXP = $(MINIPERL_NONSHR)
649 LIBPERLEXPORT = perl.exp
655 $spitshell >>$Makefile <<'!NO!SUBS!'
656 MINIPERLEXP = miniperl$(EXE_EXT)
658 PERLEXPORT = perl.exp
663 $spitshell >>$Makefile <<'!NO!SUBS!'
664 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
665 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp
670 $spitshell >>$Makefile <<'!NO!SUBS!'
671 MINIPERLEXP = miniperl
673 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
674 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
679 $spitshell >>$Makefile <<'!NO!SUBS!'
680 cygwin.c: cygwin/cygwin.c
681 $(LNS) cygwin/cygwin.c
683 LIBPERL_NONSHR = libperl$(LIB_EXT)
685 $(LIBPERL_NONSHR): $(obj)
686 $(RMS) $(LIBPERL_NONSHR)
687 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
693 if test -s $Makefile_s ; then
695 $spitshell >>$Makefile <<!GROK!THIS!
697 Makefile: $Makefile_s
702 $spitshell >>$Makefile <<'!NO!SUBS!'
703 $(DTRACE_H): perldtrace.d
704 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H)
706 mydtrace.h: $(DTRACE_H)
713 $spitshell >>$Makefile <<'!NO!SUBS!'
714 $(DTRACE_O): perldtrace.d
715 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
720 $spitshell >>$Makefile <<'!NO!SUBS!'
721 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
723 case "$useshrplib" in
725 $spitshell >>$Makefile <<'!NO!SUBS!'
727 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
731 $spitshell >>$Makefile <<'!NO!SUBS!'
732 rm -f libperl$(OBJ_EXT)
733 mv $@ libperl$(OBJ_EXT)
734 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
740 $spitshell >>$Makefile <<'!NO!SUBS!'
742 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
743 @$(ranlib) $(LIBPERL)
747 $spitshell >>$Makefile <<'!NO!SUBS!'
749 # How to build executables.
751 # The $& notation tells Sequent machines that it can do a parallel make,
752 # and is harmless otherwise.
753 # The miniperl -w -MExporter line is a basic cheap test to catch errors
754 # before make goes on to run preplibrary and then MakeMaker on extensions.
755 # This is very handy because later errors are often caused by miniperl
756 # build problems but that's not obvious to the novice.
757 # The Module used here must not depend on Config or any extensions.
761 case "${osname}${osvers}" in
763 $spitshell >>$Makefile <<'!NO!SUBS!'
764 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
765 $(CC) -o miniperl$(EXE_EXT) $(CLDFLAGS) \
767 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
768 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
772 $spitshell >>$Makefile <<'!NO!SUBS!'
773 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) perlmini$(OBJ_EXT) opmini$(OBJ_EXT)
774 $(CC) -o miniperl$(EXE_EXT) $(mini_obj) \
775 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
776 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
782 *) case "$ldflags" in
783 *"-flat_namespace"*) ;;
784 *) # to allow opmini.o to override stuff in libperl.dylib
785 $spitshell >>$Makefile <<!NO!SUBS!
786 NAMESPACEFLAGS = -force_flat_namespace
792 $spitshell >>$Makefile <<'!NO!SUBS!'
793 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
795 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl$(EXE_EXT) \
797 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
798 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
802 $spitshell >>$Makefile <<'!NO!SUBS!'
803 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
805 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl$(EXE_EXT) \
807 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
808 $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
813 $spitshell >>$Makefile <<'!NO!SUBS!'
815 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
817 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
819 # Purify/Quantify Perls.
821 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
822 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
824 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
825 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
827 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
828 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
830 # Valgrind perl (currently Linux only)
832 perl.valgrind.config: config.sh
833 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
834 @$(MAKE) perl.config.dashg
835 @echo "Checking usemymalloc='n' in config.sh..."
836 @grep "^usemymalloc=" config.sh
837 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
838 @echo "And of course you have to have valgrind..."
839 $(VALGRIND) ./perl -e 1 2>/dev/null || exit 1
841 # Third Degree Perl (Tru64 only)
844 @echo "Checking optimize='-g' in config.sh..."
845 @grep "^optimize=" config.sh
846 @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1
848 perl.third.config: config.sh
849 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
850 @$(MAKE) perl.config.dashg
851 @echo "Checking usemymalloc='n' in config.sh..."
852 @grep "^usemymalloc=" config.sh
853 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
855 perl.third: /usr/bin/atom perl.third.config perl
856 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
857 @echo "Now you may run perl.third and then study perl.3log."
859 # Pixie Perls (Tru64 and IRIX only)
861 perl.pixie.config: config.sh
862 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
863 @$(MAKE) perl.config.dashg
865 perl.pixie.atom: /usr/bin/atom perl
866 atom -tool pixie -L. -all -toolargs="-quiet" perl
868 perl.pixie.irix: perl
871 perl.pixie: /usr/bin/pixie perl.pixie.config perl
872 if test -x /usr/bin/atom; then \
873 $(MAKE) perl.pixie.atom; \
875 $(MAKE) perl.pixie.irix; \
877 @echo "Now you may run perl.pixie and then run pixie."
882 @echo "Checking optimize='-pg' in config.sh..."
883 @grep "^optimize=" config.sh
884 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
886 perl.gprof.config: config.sh
887 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
888 @$(MAKE) perl.config.dashpg
890 perl.gprof: /usr/bin/gprof perl.gprof.config
892 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
893 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
898 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
899 @echo "Checking gccversion in config.sh..."
900 @grep "^gccversion=" config.sh
901 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
902 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
903 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
904 @grep "^ccflags=" config.sh
905 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
907 perl.gcov: perl.config.gcov
909 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
910 @echo "Now you may run perl.gcov and then run gcov some.c."
912 # Microperl. This is just a convenience thing if one happens to
913 # build also the full Perl and therefore the real big Makefile:
914 # usually one should manually explicitly issue the below command.
918 $(MAKE) -f Makefile.micro
924 # Some environment have no system(), which mkpport uses.
925 # Let's try running the commands with shell.
928 $spitshell >>$Makefile <<!GROK!THIS!
930 makeppport: miniperl\$(EXE_EXT) \$(CONFIGPM)
931 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
932 (cd ext/Devel-PPPort && `pwd`/run.sh ../../miniperl$(EXE_EXT) -I../../lib \$\$f); \
938 $spitshell >>$Makefile <<'!NO!SUBS!'
940 makeppport: miniperl$(EXE_EXT) $(CONFIGPM) $(nonxs_ext)
941 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib $(Icwd) mkppport
947 $spitshell >>$Makefile <<'!NO!SUBS!'
950 preplibrary: miniperl$(EXE_EXT) $(CONFIGPM) lib/lib.pm lib/re.pm $(PREPLIBRARY_LIBPERL)
952 $(CONFIGPM_FROM_CONFIG_SH) $(CONFIGPOD): config.sh miniperl$(EXE_EXT) configpm Porting/Glossary lib/Config_git.pl
953 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib configpm
955 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl $(CONFIGPM)
956 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) minimod.pl > lib/ExtUtils/Miniperl.pm
958 lib/re.pm: ext/re/re.pm
960 cp ext/re/re.pm lib/re.pm
962 $(plextract): miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p $(dynamic_ext)
964 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -I"`pwd`/lib" $@.PL
966 x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) $(dynamic_ext) x2p/s2p.PL
967 cd x2p; $(LDLIBPTH) $(MAKE) s2p
969 lib/lib.pm: miniperl$(EXE_EXT) $(CONFIGPM)
971 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib $(Icwd) lib/lib_pm.PL
973 unidatafiles $(unidatafiles): uni.data
975 uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
976 cd lib/unicore && $(LDLIBPTH) $(RUN) ../../miniperl$(EXE_EXT) -I../../lib mktables -w
979 # perl$(EXE_EXT) and ext because buildtoc uses Text::Wrap uses re
980 # But also this ensures that all extensions are built before we try to scan
981 # them, which picks up Devel::PPPort's documentation.
982 pod/perltoc.pod: $(perltoc_pod_prereqs) perl$(EXE_EXT) $(ext) pod/buildtoc
983 $(LDLIBPTH) $(RUN) ./perl$(EXE_EXT) -Ilib pod/buildtoc --build-toc -q
985 pod/perlapi.pod pod/perlintern.pod: miniperl$(EXE_EXT) autodoc.pl embed.fnc
986 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib autodoc.pl
988 pod/perlmodlib.pod: miniperl$(EXE_EXT) pod/perlmodlib.PL MANIFEST
989 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib $(Icwd) pod/perlmodlib.PL -q
991 pod/perldelta.pod: pod/perl5110delta.pod
992 $(LNS) perl5110delta.pod pod/perldelta.pod
994 extra.pods: miniperl$(EXE_EXT)
995 -@test ! -f extra.pods || rm -f `cat extra.pods`
997 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
998 nx=`echo $$x | sed -e "s/README\.//"`; \
999 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1000 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1003 extras.make: perl$(EXE_EXT)
1004 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1006 extras.test: perl$(EXE_EXT)
1007 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1009 extras.install: perl$(EXE_EXT)
1010 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1012 .PHONY: install install-strip install-all install-verbose install-silent \
1013 no-install install.perl install.man install.html
1015 META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
1016 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib Porting/makemeta
1019 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
1021 install install-all:
1022 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
1025 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
1028 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
1031 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
1033 # Set this to an empty string to avoid an attempt of rebuild before install
1034 INSTALL_DEPENDENCE = all
1036 install.perl: $(INSTALL_DEPENDENCE) installperl
1037 $(LDLIBPTH) $(RUN) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1038 -@test ! -s extras.lst || $(MAKE) extras.install
1040 install.man: all installman
1041 $(LDLIBPTH) $(RUN) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1043 # XXX Experimental. Hardwired values, but useful for testing.
1044 # Eventually Configure could ask for some of these values.
1045 install.html: all installhtml
1046 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1047 $(LDLIBPTH) $(RUN) ./perl installhtml \
1048 --podroot=. --podpath=. --recurse \
1049 --htmldir=$(privlib)/html \
1050 --htmlroot=$(privlib)/html \
1051 --splithead=pod/perlipc \
1052 --splititem=pod/perlfunc \
1053 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
1054 --ignore=Porting/Maintainers.pm,Porting/patching.pod,Porting/pumpkin.pod,Porting/repository.pod \
1058 # I now supply perly.c with the kits, so the following section is
1059 # used only if you force bison to run by saying
1061 # You normally shouldn't remake perly.[ch].
1066 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1068 # this outputs perly.h, perly.act and perly.tab
1072 # We don't want to regenerate perly.c and perly.h, but they might
1073 # appear out-of-date after a patch is applied or a new distribution is
1081 # No compat3.sym here since and including the 5.004_50.
1082 # No interp.sym since 5.005_03.
1083 SYM = global.sym globvar.sym perlio.sym pp.sym
1085 SYMH = perlvars.h intrpvar.h
1089 # The following files are generated automatically
1090 # embed.pl: proto.h embed.h embedvar.h global.sym
1091 # perlapi.h perlapi.c
1092 # [* embed.pl needs pp.sym generated by opcode.pl! *]
1093 # keywords.pl: keywords.h
1094 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
1095 # regcomp.pl: regnodes.h
1096 # warnings.pl: warnings.h lib/warnings.pm
1097 # The correct versions should be already supplied with the perl kit,
1098 # in case you don't have perl available.
1099 # To force them to be regenerated, run
1101 # with your existing copy of perl
1102 # (make regen_headers is kept for backwards compatibility)
1104 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
1105 embed.h embedvar.h global.sym \
1106 perlapi.h perlapi.c regnodes.h \
1107 warnings.h lib/warnings.pm
1109 .PHONY: regen_headers regen_all
1114 regen_headers: FORCE
1119 .PHONY: manisort manicheck
1122 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1123 perl Porting/manisort -q -o MANIFEST; sh -c true)
1126 perl Porting/manicheck
1129 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1130 # automatically get built. There should ordinarily be no need to change
1131 # any of this part of makefile.
1133 # The dummy dependency is a place holder in case $(dynamic_ext) or
1134 # $(static_ext) is empty.
1136 # DynaLoader may be needed for extensions that use Makefile.PL.
1138 $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE $(nonxs_ext)
1139 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1141 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
1142 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1144 s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
1145 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1147 n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary FORCE
1148 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1151 $spitshell >>$Makefile <<EOF
1155 $spitshell >>$Makefile <<'!NO!SUBS!'
1159 @eval `$(LDLIBPTH) $(RUN) ./perl -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1161 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1162 realclean _realcleaner clobber _clobber \
1163 distclean veryclean _verycleaner \
1164 cleanup_unpacked_files unpack_files
1166 clean: cleanup_unpacked_files _tidy _mopup
1168 realclean: cleanup_unpacked_files _realcleaner _mopup
1169 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1172 -@rm -f Cross/run-* Cross/to-* Cross/from-*
1174 rm -f config.sh cppstdin Policy.sh extras.lst
1176 clobber: cleanup_unpacked_files _realcleaner _mopup _clobber
1180 # Like distclean but also removes emacs backups and *.orig.
1181 veryclean: cleanup_unpacked_files _verycleaner _mopup _clobber
1182 -@rm -f Obsolete Wanted
1184 # Do not 'make _mopup' directly.
1186 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c uudmap.h generate_uudmap$(EXE_EXT) bitcount.h
1188 -@test -f extra.pods && rm -f `cat extra.pods`
1189 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1190 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o
1191 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1192 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
1193 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
1194 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
1195 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
1196 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1197 -rm -f perl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
1198 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
1199 -rm -f config.arch config.over $(DTRACE_H)
1201 # Do not 'make _tidy' directly.
1203 -cd pod; $(LDLIBPTH) $(MAKE) clean
1204 -cd utils; $(LDLIBPTH) $(MAKE) clean
1205 -cd x2p; $(LDLIBPTH) $(MAKE) clean
1206 -rm -f lib/Config_git.pl git_version.h
1207 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1208 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
1212 -cd os2; rm -f Makefile
1213 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1214 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1215 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
1216 -@if test -f miniperl$(EXE_EXT) ; then \
1217 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1218 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
1223 rm -f realclean.sh veryclean.sh
1224 -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport --clean
1226 # Some systems do not support "?", so keep these files separate.
1228 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1229 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1230 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1231 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1232 rm -rf $(addedbyconf)
1233 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1235 rm -rf $(unidatafiles) $(unidatadirs)
1237 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1238 rm -f h2ph.man pstruct
1240 rm -f preload lib/re.pm
1241 rm -rf lib/Encode lib/Compress lib/Hash lib/re
1242 rm -rf lib/TAP lib/Module/Pluggable lib/App
1244 rm -rf lib/IO/Compress lib/IO/Uncompress
1245 rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1246 rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1247 rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1250 -rmdir lib/Filter/Util lib/IO/Socket
1251 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1252 -rmdir lib/threads lib/XS
1253 -rmdir lib/CPANPLUS/Dist/Build/t/dummy-*
1254 -rmdir lib/CPANPLUS/t/dummy-cpanplus lib/CPANPLUS/t/dummy-localmirror
1255 -rm -f lib/ExtUtils/CBuilder/t/libcompilet.dll.a
1256 -rm -f lib/ExtUtils/ParseXS/t/libXSTest.dll.a
1259 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1260 @$(LDLIBPTH) $(MAKE) _cleaner2
1263 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1264 @$(LDLIBPTH) $(MAKE) _cleaner2
1265 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1270 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1274 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1276 # Need to unset during recursion to go out of loop.
1277 # The README below ensures that the dependency list is never empty and
1278 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1280 MAKEDEPEND = Makefile makedepend
1282 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1283 $(MAKE) depend MAKEDEPEND=
1285 config.h: config_h.SH config.sh
1286 $(SHELL) config_h.SH
1288 # When done, touch perlmain.c so that it doesn't get remade each time.
1291 sh ./makedepend MAKE=$(MAKE)
1292 - test -s perlmain.c && touch perlmain.c
1293 cd x2p; $(MAKE) depend
1295 # Cannot postpone this until $firstmakefile is ready ;-)
1296 makedepend: makedepend.SH config.sh
1299 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1300 test_tty test-tty _test_tty test_notty test-notty _test_notty \
1301 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1302 test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
1303 test.third check.third utest.third ucheck.third test_notty.third \
1304 test.deparse test_notty.deparse test_harness test_harness_notty \
1305 minitest coretest test.taintwarn test-reonly
1307 # Cannot delegate rebuilding of t/perl to make
1308 # to allow interlaced test and minitest
1312 _test_prep: unpack_files
1313 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1315 # Architecture-neutral stuff:
1317 test_prep_pre: preplibrary utilities $(nonxs_ext)
1319 test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1320 PERL=./perl $(MAKE) _test_prep
1323 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) $(TEST_FILES) </dev/tty
1326 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) $(TEST_FILES)
1329 $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -u -m
1331 cleanup_unpacked_files:
1332 -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -c
1334 # The second branch is for testing without a tty or controlling terminal,
1337 if (true </dev/tty) >/dev/null 2>&1; then \
1338 $(MAKE) TEST_ARGS='$(TEST_ARGS)' TESTFILE=$(TESTFILE) _test_tty ; \
1340 $(MAKE) TEST_ARGS='$(TEST_ARGS)' TESTFILE=$(TESTFILE) _test_notty ; \
1342 @echo "Ran tests" > t/rantests
1344 test check: test_prep
1345 PERL=./perl $(MAKE) _test
1348 PERL=./perl $(MAKE) _test_tty
1350 test_notty: test_prep
1351 PERL=./perl $(MAKE) _test_notty
1353 utest ucheck test.utf8 check.utf8: test_prep
1354 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1357 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1359 test-prep: test_prep
1363 test-notty: test_notty
1367 test.torture torturetest: test_prep
1368 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1370 # Targets for UTF16 testing:
1372 minitest.utf16: minitest.prep
1373 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1374 && $(LDLIBPTH) $(RUN) ./perl TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1376 test.utf16 check.utf16: test_prep
1377 PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1379 utest.utf16 ucheck.utf16: test_prep
1380 PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1382 # Targets for valgrind testing:
1384 test_prep.valgrind: test_prep perl.valgrind
1385 PERL=./perl $(MAKE) _test_prep
1387 test.valgrind check.valgrind: test_prep perl.valgrind.config
1388 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(MAKE) _test
1390 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config
1391 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1393 test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1394 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1396 # Targets for Third Degree testing.
1398 test_prep.third: test_prep perl.third
1399 PERL=./perl.third $(MAKE) _test_prep
1401 test.third check.third: test_prep.third perl.third
1402 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1404 utest.third ucheck.third: test_prep.third perl.third
1405 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1407 test_notty.third: test_prep.third perl.third
1408 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1410 # Targets for Deparse testing.
1412 test.deparse: test_prep
1413 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1415 test_notty.deparse: test_prep
1416 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1418 # Targets to run the test suite with -t
1420 test.taintwarn: test_prep
1421 PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1424 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1425 $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
1427 @echo "You may see some irrelevant test failures if you have been unable"
1428 @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
1431 # Can't depend on lib/Config.pm because that might be where miniperl
1433 minitest: miniperl$(EXE_EXT) lib/re.pm minitest.prep
1434 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1435 && $(LDLIBPTH) $(RUN) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t op/*.t uni/*.t </dev/tty
1439 test_harness: test_prep
1440 PERL=./perl $(MAKE) TESTFILE=harness _test
1442 test_harness_notty: test_prep
1443 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1445 test-reonly: test_prep
1446 PERL=./perl TEST_ARGS='-re \\bre\\/' $(MAKE) TESTFILE=harness _test
1448 # Handy way to run perlbug -ok without having to install and run the
1449 # installed perlbug. We don't re-run the tests here - we trust the user.
1450 # Please *don't* use this unless all tests pass.
1451 # If you want to report test failures, use "make nok" instead.
1453 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1456 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1459 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1462 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1464 okfilenack: utilities
1465 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1468 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1471 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1474 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1476 nokfilenack: utilities
1477 $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1479 .PHONY: clist hlist shlist pllist
1482 echo $(c) | tr ' ' $(TRNL) >.clist
1485 echo $(h) | tr ' ' $(TRNL) >.hlist
1488 echo $(sh) | tr ' ' $(TRNL) >.shlist
1491 echo $(pl) | tr ' ' $(TRNL) >.pllist
1493 Makefile: Makefile.SH ./config.sh
1494 $(SHELL) Makefile.SH
1498 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1501 elc: emacs/cperl-mode.elc
1503 emacs/cperl-mode.elc: emacs/cperl-mode.el
1504 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1506 .PHONY: etags ctags tags
1510 TAGS: emacs/cperl-mode.elc
1513 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1514 # This may also fail if . is in the head of the path, since perl will
1517 perl emacs/e2ctags.pl TAGS > tags
1520 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1522 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1523 # If this runs make out of memory, delete /usr/include lines.
1530 $ln Makefile ../Makefile
1533 $rm -f $firstmakefile
1535 # Now do any special processing required before building.
1540 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1545 rm -f y.tab.c y.tab.h
1548 # we are using two different yaccs in BS2000 Posix!
1549 byacc a2p.y >/dev/null 2>&1
1552 yacc a2p.y >/dev/null 2>&1
1555 if cmp -s y.tab.c a2p.c
1559 echo "a2p.y -> a2p.c" >&2
1562 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1563 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1564 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1567 # In case somebody yacc -d:ed the a2p.y.
1570 if cmp -s y.tab.h a2p.h
1574 echo "a2p.h -> a2p.h" >&2
1583 # Do nothing in VM/ESA.
1586 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1590 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1595 # ex: set ts=8 sts=4 sw=4 noet: