2 case $PERL_CONFIG_SH in
7 echo "Can't find config.sh."; exit 1
12 : This forces SH files to create target in same directory as SH file.
13 : This is so that make depend always knows where to find SH derivatives.
15 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
19 *define*) suidperl='suidperl' ;;
23 linklibperl='$(LIBPERL)'
24 shrpldflags='$(LDDLFLAGS)'
26 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
29 # Prefix all runs of 'miniperl' and 'perl' with
30 # $ldlibpth so that ./perl finds *this* shared libperl.
31 case "$LD_LIBRARY_PATH" in
33 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
35 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
38 pldlflags="$cccdlflags"
39 case "${osname}${osvers}" in
42 lddlflags="-dynamic -undefined warning -framework System \
43 -compatibility_version 1 -current_version $patchlevel \
44 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
47 shrpldflags="${ldflags} -dynamiclib \
48 -compatibility_version \
49 ${api_revision}.${api_version}.${api_subversion} \
51 ${revision}.${patchlevel}.${subversion} \
52 -install_name \$(shrpdir)/\$@"
60 netbsd*|freebsd[234]*|openbsd*)
61 linklibperl="-L. -lperl"
64 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
66 3*) shrpldflags="$shrpldflags -e _nostart"
68 *) shrpldflags="$shrpldflags -b noentry"
71 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
72 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
75 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
78 shrpldflags='-W l,dll'
79 linklibperl='libperl.x'
80 DPERL_EXTERNAL_GLOB=''
83 case "$ldlibpthname" in
91 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
94 # Strip off any trailing :'s
95 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
105 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
109 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
113 : Prepare dependency lists for Makefile.
115 for f in $dynamic_ext; do
116 : the dependency named here will never exist
117 base=`echo "$f" | sed 's/.*\///'`
118 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
122 for f in $static_ext; do
123 base=`echo "$f" | sed 's/.*\///'`
124 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
128 for f in $nonxs_ext; do
129 base=`echo "$f" | sed 's/.*\///'`
130 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
133 # Handle the usage of different yaccs in posix-bc (During Configure we
134 # us yacc for perly.y and byacc for a2p.y. The makefiles must use the
135 # same configuration for run_byacc!):
142 echo "Extracting Makefile (with variable substitutions)"
143 $spitshell >Makefile <<!GROK!THIS!
145 # This file is derived from Makefile.SH. Any changes made here will
146 # be lost the next time you run Configure.
147 # Makefile is used to generate $firstmakefile. The only difference
148 # is that $firstmakefile has the dependencies filled in at the end.
151 # I now supply perly.c with the kits, so don't remake perly.c without byacc
159 mallocsrc = $mallocsrc
160 mallocobj = $mallocobj
162 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
167 # The following are mentioned only to make metaconfig include the
168 # appropriate questions in Configure. If you want to change these,
169 # edit config.sh instead, or specify --man1dir=/wherever on
170 # installman commandline.
172 scriptdir = $scriptdir
173 shrpdir = $archlibexp/CORE
174 privlib = $installprivlib
180 # The following are used to build and install shared libraries for
182 LDDLFLAGS = $lddlflags
183 SHRPLDFLAGS = $shrpldflags
184 CCDLFLAGS = $ccdlflags
186 PLDLFLAGS = $pldlflags
188 LLIBPERL= $linklibperl
191 # The following is used to include the current directory in
192 # the dynamic loader path you are building a shared libperl.
195 dynamic_ext = $dynamic_list
196 static_ext = $static_list
197 nonxs_ext = $nonxs_list
198 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
199 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
201 libs = $perllibs $cryptlib
203 public = perl\$(EXE_EXT) $suidperl utilities translators
205 shellflags = $shellflags
207 # This is set to MAKE=$make if your $make command doesn't
211 # Mention $gmake here so it gets probed for by Configure.
213 # These variables may need to be manually set for non-Unix systems.
220 FIRSTMAKEFILE = $firstmakefile
222 # Any special object files needed by this architecture, e.g. os2/os2.obj
225 .SUFFIXES: .c \$(OBJ_EXT) .i .s
230 # how to tr(anslate) newlines
237 INSTALLPREFIXEXP = $prefix
240 # not used by Makefile but by installperl;
241 # mentioned here so that metaconfig picks these up
245 case "${osname}:${osvers}" in
247 $spitshell >>Makefile <<EOF
249 # Your locales are broken (osname $osname, osvers $osvers)
250 # and to avoid the numerous
251 # perl: warning: Setting locale failed.
252 # warnings during the build process we reset the locale variables.
261 ## In the following dollars and backticks do not need the extra backslash.
262 $spitshell >>Makefile <<'!NO!SUBS!'
264 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $(LIBPERL) $@`
266 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $(LIBPERL) $<`
268 private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
270 # Files to be built with variable substitution before miniperl
272 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
273 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
275 shextract = Makefile cflags config.h makeaperl makedepend \
276 makedir myconfig writemain pod/Makefile
278 # Files to be built with variable substitution after miniperl is
279 # available. Dependencies handled manually below (for now).
281 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
282 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
285 # lib/lib.pm is not listed here because it has a rule of its own.
286 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
287 pod/pod2usage pod/podchecker pod/podselect \
290 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
292 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
293 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
294 h3 = opcode.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
295 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
296 h5 = utf8.h warnings.h
297 h = $(h1) $(h2) $(h3) $(h4) $(h5)
299 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
300 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
301 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
302 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
304 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
306 obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT)
307 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)
308 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) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT)
310 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
312 # Once perl has been Configure'd and built ok you build different
313 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
314 # make clean; make LIBPERL=libperl<type>.a
315 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
316 # See cflags to understand how this works.
318 # This mechanism is getting clunky and might not even work any more.
319 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
325 $(CCCMD) $(PLDLFLAGS) $*.c
328 $(CCCMDSRC) -E $*.c > $*.i
333 .PHONY: all compile translators utilities
335 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
337 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
340 echo "testing compilation" > testcompile;
341 cd utils; $(MAKE) compile;
342 cd x2p; $(MAKE) compile;
343 cd pod; $(MAKE) compile;
345 translators: miniperl$(EXE_EXT) lib/Config.pm FORCE
346 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
348 utilities: miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
349 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
352 # This is now done by installman only if you actually want the man pages.
353 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
355 # Phony target to force checking subdirectories.
356 # Apparently some makes require an action for the FORCE target.
361 $spitshell >>Makefile <<!GROK!THIS!
363 # We do a copy of the op.c instead of a symlink because gcc gets huffy
364 # if we have a symlink forest to another disk (it complains about too many
365 # levels of symbolic links, even if we have only two)
367 opmini\$(OBJ_EXT): op.c config.h
369 \$(CPS) op.c opmini.c
370 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
374 $spitshell >>Makefile <<'!NO!SUBS!'
375 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
376 $(CCCMD) $(PLDLFLAGS) $*.c
378 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
379 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
380 sh mv-if-diff writemain.tmp perlmain.c
382 perlmain$(OBJ_EXT): perlmain.c
383 $(CCCMD) $(PLDLFLAGS) $*.c
385 # The file ext.libs is a list of libraries that must be linked in
386 # for static extensions, e.g. -lm -lgdbm, etc. The individual
387 # static extension Makefile's add to it.
388 ext.libs: $(static_ext)
389 -@test -f ext.libs || touch ext.libs
393 # How to build libperl. This is still rather convoluted.
394 # Load up custom Makefile.SH fragment for shared loading and executables:
397 Makefile_s="$osname/Makefile.SHs"
403 $spitshell >>Makefile <<!GROK!THIS!
405 # In AIX we need to change this for building Perl itself from
406 # its earlier definition (which is for building external
407 # extensions *after* Perl has been built and installed)
408 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
411 case "$useshrplib" in
413 $spitshell >>Makefile <<'!NO!SUBS!'
415 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
416 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
418 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
419 $(RMS) $(LIBPERL_NONSHR)
420 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
422 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
423 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
424 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
426 MINIPERLEXP = $(MINIPERL_NONSHR)
428 LIBPERLEXPORT = perl.exp
434 $spitshell >>Makefile <<'!NO!SUBS!'
435 MINIPERLEXP = miniperl$(EXE_EXT)
437 PERLEXPORT = perl.exp
442 $spitshell >>Makefile <<'!NO!SUBS!'
443 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
444 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
445 sh mv-if-diff perl.exp.tmp perl.exp
450 $spitshell >>Makefile <<'!NO!SUBS!'
451 MINIPERLEXP = miniperl
453 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
454 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
455 sh mv-if-diff perl.exp.tmp perl5.def
461 if test -r $Makefile_s ; then
463 $spitshell >>Makefile <<!GROK!THIS!
465 Makefile: $Makefile_s
468 $spitshell >>Makefile <<'!NO!SUBS!'
469 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
471 case "$useshrplib" in
473 $spitshell >>Makefile <<'!NO!SUBS!'
474 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj)
478 $spitshell >>Makefile <<'!NO!SUBS!'
479 rm -f libperl$(OBJ_EXT)
480 mv $@ libperl$(OBJ_EXT)
481 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
487 $spitshell >>Makefile <<'!NO!SUBS!'
489 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
490 @$(ranlib) $(LIBPERL)
494 $spitshell >>Makefile <<'!NO!SUBS!'
496 # How to build executables.
498 # The $& notation tells Sequent machines that it can do a parallel make,
499 # and is harmless otherwise.
500 # The miniperl -w -MExporter line is a basic cheap test to catch errors
501 # before make goes on to run preplibrary and then MakeMaker on extensions.
502 # This is very handy because later errors are often caused by miniperl
503 # build problems but that's not obvious to the novice.
504 # The Module used here must not depend on Config or any extensions.
508 case "${osname}${osvers}" in
510 $spitshell >>Makefile <<'!NO!SUBS!'
511 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
512 $(CC) -o miniperl $(CLDFLAGS) \
513 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
514 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
515 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
519 $spitshell >>Makefile <<'!NO!SUBS!'
520 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
521 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
522 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
523 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
527 $spitshell >>Makefile <<'!NO!SUBS!'
528 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
530 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
531 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
532 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
537 $spitshell >>Makefile <<'!NO!SUBS!'
539 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
541 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
543 # Purify/Quantify Perls.
545 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
546 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
548 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
549 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
551 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
552 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
554 # Third Degree Perl (Tru64 only)
557 @echo "Checking optimize='-g' in config.sh..."
558 @grep "^optimize=" config.sh
559 @grep "^optimize='-g'" config.sh >/dev/null || exit 1
561 perl.third.config: config.sh
562 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
563 @$(MAKE) perl.config.dashg
564 @echo "Checking usemymalloc='n' in config.sh..."
565 @grep "^usemymalloc=" config.sh
566 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
568 perl.third: /usr/bin/atom perl.third.config perl
569 atom -tool third -L. -all -gp -toolargs="-quiet -invalid -uninit heap+stack+partword+copy -min 0" perl
570 @echo "Now you may run perl.third and then study perl.3log."
572 # Pixie Perls (Tru64 and IRIX only)
574 perl.pixie.config: config.sh
575 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
576 @$(MAKE) perl.config.dashg
578 perl.pixie.atom: /usr/bin/atom perl
579 atom -tool pixie -L. -all -toolargs="-quiet" perl
581 perl.pixie.irix: perl
584 perl.pixie: /usr/bin/pixie perl.pixie.config perl
585 if test -x /usr/bin/atom; then \
586 $(MAKE) perl.pixie.atom; \
588 $(MAKE) perl.pixie.irix; \
590 @echo "Now you may run perl.pixie and then run pixie."
595 @echo "Checking optimize='-pg' in config.sh..."
596 @grep "^optimize=" config.sh
597 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
599 perl.gprof.config: config.sh
600 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
601 @$(MAKE) perl.config.dashpg
603 perl.gprof: /usr/bin/gprof perl.gprof.config
605 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
606 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
611 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
612 @echo "Checking gccversion in config.sh..."
613 @grep "^gccversion=" config.sh
614 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
615 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
616 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
617 @grep "^ccflags=" config.sh
618 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
620 perl.gcov: perl.config.gcov
622 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
623 @echo "Now you may run perl.gcov and then run gcov some.c."
625 # Microperl. This is just a convenience thing if one happens to
626 # build also the full Perl and therefore the real big Makefile:
627 # usually one should manually explicitly issue the below command.
631 $(MAKE) -f Makefile.micro
633 # This version, if specified in Configure, does ONLY those scripts which need
634 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
635 # checks as well as the special code to validate that the script in question
636 # has been invoked correctly.
638 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
639 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
645 $spitshell >>Makefile <<'!NO!SUBS!'
647 sperl$(OBJ_EXT): perl.c $(h)
649 $(LNS) perl.c sperl.c
650 $(CCCMD) -DIAMSUID sperl.c
653 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
654 # test -d lib/auto || mkdir lib/auto
655 # We need to autosplit in two steps because VOS can't handle so many args
658 preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
659 @sh ./makedir lib/auto
660 @echo " AutoSplitting perl library"
661 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
662 autosplit_lib_modules(@ARGV)' lib/*.pm
663 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
664 autosplit_lib_modules(@ARGV)' lib/*/*.pm
667 # Take care to avoid modifying lib/Config.pm without reason
668 # (If trying to create a new port and having problems with the configpm script,
669 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
670 lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm
671 $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
672 sh mv-if-diff configpm.tmp $@
674 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
675 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
676 sh mv-if-diff minimod.tmp $@
677 -touch lib/ExtUtils/Miniperl.pm
679 lib/re.pm: ext/re/re.pm
680 cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
682 $(plextract): miniperl$(EXE_EXT) lib/Config.pm
684 $(LDLIBPTH) ./miniperl -Ilib $@.PL
686 lib/lib.pm: miniperl$(EXE_EXT) lib/Config.pm
688 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
690 extra.pods: miniperl$(EXE_EXT)
691 -@test -f extra.pods && rm -f `cat extra.pods`
693 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
694 nx=`echo $$x | sed -e "s/README\.//"`; \
695 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
696 echo "pod/perl"$$nx".pod" >> extra.pods ; \
698 -@rm -f pod/perlvms.pod
699 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
701 extras.make: perl$(EXE_EXT)
702 -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
704 extras.test: perl$(EXE_EXT)
705 -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
707 extras.install: perl$(EXE_EXT)
708 -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
710 .PHONY: install install-strip install-all install-verbose install-silent \
711 no-install install.perl install.man installman install.html installhtml
714 $(MAKE) STRIPFLAGS=-s install
717 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
720 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
723 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
726 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
728 install.perl: all installperl
729 if [ -n "$(COMPILE)" ]; \
731 cd utils; $(MAKE) compile; \
732 cd ../x2p; $(MAKE) compile; \
733 cd ../pod; $(MAKE) compile; \
736 $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS)
737 $(MAKE) extras.install
739 install.man: all installman
740 $(LDLIBPTH) ./perl installman $(INSTALLFLAGS)
742 # XXX Experimental. Hardwired values, but useful for testing.
743 # Eventually Configure could ask for some of these values.
744 install.html: all installhtml
745 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
746 $(LDLIBPTH) ./perl installhtml \
747 --podroot=. --podpath=. --recurse \
748 --htmldir=$(privlib)/html \
749 --htmlroot=$(privlib)/html \
750 --splithead=pod/perlipc \
751 --splititem=pod/perlfunc \
752 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
756 # I now supply perly.c with the kits, so the following section is
757 # used only if you force byacc to run by saying
759 # Since we patch up the byacc output, the perly.fixer script needs
760 # to run with precisely the same version of byacc as I use. You
761 # normally shouldn't remake perly.[ch].
763 .PHONY: check_byacc run_byacc
766 @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2'
768 run_byacc: FORCE check_byacc
770 -chmod 664 perly.c perly.h
771 sh $(shellflags) ./perly.fixer y.tab.c perly.c
772 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
773 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
774 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
775 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
776 perl -i.old perlyline.pl perly.c
777 chmod 664 vms/perly_c.vms vms/perly_h.vms
778 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
780 # We don't want to regenerate perly.c and perly.h, but they might
781 # appear out-of-date after a patch is applied or a new distribution is
789 PERLYVMS = vms/perly_c.vms vms/perly_h.vms
791 $(PERLYVMS): perly.c perly.h vms/vms_yfix.pl
792 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
794 # No compat3.sym here since and including the 5.004_50.
795 # No interp.sym since 5.005_03.
796 SYM = global.sym globvar.sym perlio.sym pp.sym
798 SYMH = perlvars.h intrpvar.h thrdvar.h
802 # The following files are generated automatically
803 # keywords.pl: keywords.h
804 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
805 # [* embed.pl needs pp.sym generated by opcode.pl! *]
806 # embed.pl: proto.h embed.h embedvar.h global.sym
807 # perlapi.h perlapi.c pod/perlintern.pod
809 # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
811 # regcomp.pl: regnodes.h
812 # warnings.pl: warnings.h lib/warnings.pm
813 # The correct versions should be already supplied with the perl kit,
814 # in case you don't have perl available.
815 # To force them to be regenerated, type
818 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
819 embed.h embedvar.h global.sym \
820 pod/perlintern.pod pod/perlapi.pod \
821 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
822 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
823 warnings.h lib/warnings.pm
825 .PHONY: regen_headers regen_pods regen_all
828 -$(CHMOD_W) $(AUTOGEN_FILES)
838 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
840 regen_all: $(PERLYVMS) regen_headers regen_pods
843 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
844 # automatically get built. There should ordinarily be no need to change
845 # any of this part of makefile.
847 # The dummy dependency is a place holder in case $(dynamic_ext) or
848 # $(static_ext) is empty.
850 # DynaLoader may be needed for extensions that use Makefile.PL.
852 $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
853 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
855 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
856 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
858 s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
859 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
861 n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
862 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
864 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
865 realclean _realcleaner clobber _clobber \
866 distclean veryclean _verycleaner
870 realclean: _realcleaner _mopup
871 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
874 -@rm -f Cross/run-* Cross/to-* Cross/from-*
875 rm -f config.sh cppstdin Policy.sh extras.lst
877 clobber: _realcleaner _mopup _clobber
881 # Like distclean but also removes emacs backups and *.orig.
882 veryclean: _verycleaner _mopup _clobber
883 -@rm -f Obsolete Wanted
885 # Do not 'make _mopup' directly.
887 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
888 -@test -f extra.pods && rm -f `cat extra.pods`
889 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
890 -rm -f perl.exp ext.libs extra.pods opmini.o
891 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
892 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
893 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
894 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
895 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
896 -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
897 rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
899 # Do not 'make _tidy' directly.
901 -cd pod; $(LDLIBPTH) $(MAKE) clean
902 -cd utils; $(LDLIBPTH) $(MAKE) clean
903 -cd x2p; $(LDLIBPTH) $(MAKE) clean
904 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
905 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
907 rm -f testcompile compilelog
910 -cd os2; rm -f Makefile
911 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
912 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
913 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
914 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
915 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
918 # Some systems do not support "?", so keep these files separate.
920 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
921 rm -f core *perl.core t/core t/*perl.core
922 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
923 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
924 rm -rf $(addedbyconf)
925 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
928 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
929 rm -f h2ph.man pstruct
931 rm -f testcompile compilelog
932 -rmdir lib/B lib/Data lib/Digest
934 -rmdir lib/IO/Socket lib/IO/t lib/IO
935 -rmdir lib/Filter/Util lib/List lib/MIME lib/PerlIO lib/Scalar lib/Sys
936 -rmdir lib/Thread lib/XS
939 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
940 @$(LDLIBPTH) $(MAKE) _cleaner2
943 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
944 @$(LDLIBPTH) $(MAKE) _cleaner2
945 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
947 # The following lint has practically everything turned on. Unfortunately,
948 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
949 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
954 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
956 # Need to unset during recursion to go out of loop.
957 # The README below ensures that the dependency list is never empty and
958 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
960 MAKEDEPEND = Makefile makedepend
962 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
963 $(MAKE) depend MAKEDEPEND=
965 config.h: config_h.SH config.sh
968 # When done, touch perlmain.c so that it doesn't get remade each time.
971 sh ./makedepend MAKE=$(MAKE)
972 - test -s perlmain.c && touch perlmain.c
973 cd x2p; $(MAKE) depend
975 # Cannot postpone this until $firstmakefile is ready ;-)
976 makedepend: makedepend.SH config.sh
979 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
980 test_tty test-tty _test_tty test_notty test-notty _test_notty \
981 utest ucheck test.utf8 check.utf8 \
982 test.third check.third utest.third ucheck.third test_notty.third \
983 test.deparse test_notty.deparse \
986 # Cannot delegate rebuilding of t/perl to make
987 # to allow interlaced test and minitest
992 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
994 # Architecture-neutral stuff:
996 test_prep_pre: preplibrary utilities $(nonxs_ext)
998 test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
999 PERL=./perl $(MAKE) _test_prep
1002 cd t && $(LDLIBPTH) $(PERL_DEBUG) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1005 cd t && $(LDLIBPTH) $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(PERL) $(TESTFILE) $(TEST_ARGS)
1007 # The second branch is for testing without a tty or controlling terminal,
1010 if (true </dev/tty) >/dev/null 2>&1; then \
1011 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
1013 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1015 @echo "Ran tests" > t/rantests
1017 test check: test_prep
1018 PERL=./perl $(MAKE) _test
1021 PERL=./perl $(MAKE) _test_tty
1023 test_notty: test_prep
1024 PERL=./perl $(MAKE) _test_notty
1026 utest ucheck test.utf8 check.utf8: test_prep
1027 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1030 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1032 test-prep: test_prep
1036 test-notty: test_notty
1038 # Targets for Third Degree testing.
1040 test_prep.third: test_prep perl.third
1041 PERL=./perl.third $(MAKE) _test_prep
1043 test.third check.third: test_prep.third perl.third
1044 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1046 utest.third ucheck.third: test_prep.third perl.third
1047 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1049 test_notty.third: test_prep.third perl.third
1050 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1052 # Targets for Deparse testing.
1054 test.deparse: test_prep
1055 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1057 test_notty.deparse: test_prep
1058 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1060 # Can't depend on lib/Config.pm because that might be where miniperl
1062 minitest: miniperl$(EXE_EXT) lib/re.pm
1063 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1064 $(MAKE) lib/Config.pm lib/lib.pm
1066 @echo "You may see some irrelevant test failures if you have been unable"
1067 @echo "to build lib/Config.pm or lib/lib.pm."
1069 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1070 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1074 test_harness: test_prep
1075 PERL=./perl $(MAKE) TESTFILE=harness _test
1077 # Handy way to run perlbug -ok without having to install and run the
1078 # installed perlbug. We don't re-run the tests here - we trust the user.
1079 # Please *don't* use this unless all tests pass.
1080 # If you want to report test failures, use "make nok" instead.
1082 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1085 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1088 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1091 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1093 okfilenack: utilities
1094 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1097 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1100 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1103 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1105 nokfilenack: utilities
1106 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1108 .PHONY: clist hlist shlist pllist
1111 echo $(c) | tr ' ' $(TRNL) >.clist
1114 echo $(h) | tr ' ' $(TRNL) >.hlist
1117 echo $(sh) | tr ' ' $(TRNL) >.shlist
1120 echo $(pl) | tr ' ' $(TRNL) >.pllist
1122 Makefile: Makefile.SH ./config.sh
1123 $(SHELL) Makefile.SH
1127 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1130 elc: emacs/cperl-mode.elc
1132 emacs/cperl-mode.elc: emacs/cperl-mode.el
1133 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1135 .PHONY: etags ctags tags
1139 TAGS: emacs/cperl-mode.elc
1144 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1145 # This may also fail if . is in the head of the path, since perl will
1148 perl emacs/e2ctags.pl TAGS > tags
1150 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1151 # If this runs make out of memory, delete /usr/include lines.
1158 $ln Makefile ../Makefile
1161 $rm -f $firstmakefile
1163 # Now do any special processing required before building.
1168 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
1171 rm -f y.tab.c y.tab.h
1172 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
1173 yacc -d perly.y >/dev/null 2>&1
1174 if cmp -s y.tab.c perly.c; then
1177 echo "perly.y -> perly.c" >&2
1178 mv -f y.tab.c perly.c
1180 sed -e '/^#include "perl\.h"/a\
1182 #define yydebug PL_yydebug\
1183 #define yynerrs PL_yynerrs\
1184 #define yyerrflag PL_yyerrflag\
1185 #define yychar PL_yychar\
1186 #define yyval PL_yyval\
1187 #define yylval PL_yylval' \
1188 -e '/YYSTYPE *yyval;/D' \
1189 -e '/YYSTYPE *yylval;/D' \
1190 -e '/int yychar,/,/yynerrs;/D' \
1191 -e 's/int yydebug = 0;/yydebug = 0;/' \
1192 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
1193 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1194 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1197 if cmp -s y.tab.h perly.h; then
1200 echo "perly.y -> perly.h" >&2
1201 mv -f y.tab.h perly.h
1206 rm -f y.tab.c y.tab.h
1209 # we are using two different yaccs in BS2000 Posix!
1210 byacc a2p.y >/dev/null 2>&1
1213 yacc a2p.y >/dev/null 2>&1
1216 if cmp -s y.tab.c a2p.c
1220 echo "a2p.y -> a2p.c" >&2
1223 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1224 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1225 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1228 # In case somebody yacc -d:ed the a2p.y.
1231 if cmp -s y.tab.h a2p.h
1235 echo "a2p.h -> a2p.h" >&2
1244 # Do nothing in VM/ESA.
1247 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1251 '') echo "No parser files were regenerated. That's okay." >&2 ;;