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 static_target='static_pic'
40 case "${osname}${osvers}" in
43 lddlflags="-dynamic -undefined warning -framework System \
44 -compatibility_version 1 -current_version $patchlevel \
45 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
48 shrpldflags="${ldflags} -dynamiclib \
49 -compatibility_version \
50 ${api_revision}.${api_version}.${api_subversion} \
52 ${revision}.${patchlevel}.${subversion} \
53 -install_name \$(shrpdir)/\$@"
61 netbsd*|freebsd[234]*|openbsd*)
62 linklibperl="-L. -lperl"
65 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
67 3*) shrpldflags="$shrpldflags -e _nostart"
69 *) shrpldflags="$shrpldflags -b noentry"
72 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
73 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
76 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
79 shrpldflags='-W l,dll'
80 linklibperl='libperl.x'
81 DPERL_EXTERNAL_GLOB=''
84 case "$ldlibpthname" in
92 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
95 # Strip off any trailing :'s
96 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
101 static_target='static'
107 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
111 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
115 : Prepare dependency lists for Makefile.
117 for f in $dynamic_ext; do
118 : the dependency named here will never exist
119 base=`echo "$f" | sed 's/.*\///'`
120 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
124 for f in $static_ext; do
125 base=`echo "$f" | sed 's/.*\///'`
126 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
130 for f in $nonxs_ext; do
131 base=`echo "$f" | sed 's/.*\///'`
132 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
135 # Handle the usage of different yaccs in posix-bc (During Configure we
136 # us yacc for perly.y and byacc for a2p.y. The makefiles must use the
137 # same configuration for run_byacc!):
144 echo "Extracting Makefile (with variable substitutions)"
145 $spitshell >Makefile <<!GROK!THIS!
147 # This file is derived from Makefile.SH. Any changes made here will
148 # be lost the next time you run Configure.
149 # Makefile is used to generate $firstmakefile. The only difference
150 # is that $firstmakefile has the dependencies filled in at the end.
153 # I now supply perly.c with the kits, so don't remake perly.c without byacc
161 mallocsrc = $mallocsrc
162 mallocobj = $mallocobj
164 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
169 # The following are mentioned only to make metaconfig include the
170 # appropriate questions in Configure. If you want to change these,
171 # edit config.sh instead, or specify --man1dir=/wherever on
172 # installman commandline.
174 scriptdir = $scriptdir
175 shrpdir = $archlibexp/CORE
176 privlib = $installprivlib
182 # The following are used to build and install shared libraries for
184 LDDLFLAGS = $lddlflags
185 SHRPLDFLAGS = $shrpldflags
186 CCDLFLAGS = $ccdlflags
188 PLDLFLAGS = $pldlflags
190 LLIBPERL= $linklibperl
193 # Static targets are ordinarily built without CCCDLFLAGS. However,
194 # if building a shared libperl.so that might later be linked into
195 # another application, then it might be appropriate to also build static
196 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
197 # for GNU cc). This is handled by ext/util/make_ext.
198 STATIC = $static_target
200 # The following is used to include the current directory in
201 # the dynamic loader path you are building a shared libperl.
204 dynamic_ext = $dynamic_list
205 static_ext = $static_list
206 nonxs_ext = $nonxs_list
207 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
208 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
210 libs = $perllibs $cryptlib
212 public = perl\$(EXE_EXT) $suidperl utilities translators
214 shellflags = $shellflags
216 # This is set to MAKE=$make if your $make command doesn't
220 # Mention $gmake here so it gets probed for by Configure.
222 # These variables may need to be manually set for non-Unix systems.
229 FIRSTMAKEFILE = $firstmakefile
231 # Any special object files needed by this architecture, e.g. os2/os2.obj
234 .SUFFIXES: .c \$(OBJ_EXT) .i .s
239 # how to tr(anslate) newlines
246 INSTALLPREFIXEXP = $prefix
249 # not used by Makefile but by installperl;
250 # mentioned here so that metaconfig picks these up
254 case "${osname}:${osvers}" in
256 $spitshell >>Makefile <<EOF
258 # Your locales are broken (osname $osname, osvers $osvers)
259 # and to avoid the numerous
260 # perl: warning: Setting locale failed.
261 # warnings during the build process we reset the locale variables.
270 ## In the following dollars and backticks do not need the extra backslash.
271 $spitshell >>Makefile <<'!NO!SUBS!'
273 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
275 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
277 private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
279 # Files to be built with variable substitution before miniperl
281 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
282 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
284 shextract = Makefile cflags config.h makeaperl makedepend \
285 makedir myconfig writemain pod/Makefile
287 # Files to be built with variable substitution after miniperl is
288 # available. Dependencies handled manually below (for now).
290 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
291 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
294 # lib/lib.pm is not listed here because it has a rule of its own.
295 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
296 pod/pod2usage pod/podchecker pod/podselect \
299 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
301 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
302 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
303 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
304 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
305 h5 = utf8.h warnings.h
306 h = $(h1) $(h2) $(h3) $(h4) $(h5)
308 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
309 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
310 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
311 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
313 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
315 obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT)
316 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)
317 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)
319 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
324 $(CCCMD) $(PLDLFLAGS) $*.c
327 $(CCCMDSRC) -E $*.c > $*.i
332 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
334 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
336 .PHONY: all compile translators utilities
339 echo "testing compilation" > testcompile;
340 cd utils; $(MAKE) compile;
341 cd x2p; $(MAKE) compile;
342 cd pod; $(MAKE) compile;
344 translators: miniperl$(EXE_EXT) lib/Config.pm FORCE
345 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
347 utilities: miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
348 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
351 # This is now done by installman only if you actually want the man pages.
352 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
354 # Phony target to force checking subdirectories.
355 # Apparently some makes require an action for the FORCE target.
360 $spitshell >>Makefile <<!GROK!THIS!
362 # We do a copy of the op.c instead of a symlink because gcc gets huffy
363 # if we have a symlink forest to another disk (it complains about too many
364 # levels of symbolic links, even if we have only two)
366 opmini\$(OBJ_EXT): op.c config.h
368 \$(CPS) op.c opmini.c
369 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
373 $spitshell >>Makefile <<'!NO!SUBS!'
374 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
375 $(CCCMD) $(PLDLFLAGS) $*.c
377 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
378 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
379 sh mv-if-diff writemain.tmp perlmain.c
384 ;; # Let cygwin/Makefile.SHs do its work.
386 $spitshell >>Makefile <<'!NO!SUBS!'
387 perlmain$(OBJ_EXT): perlmain.c
388 $(CCCMD) $(PLDLFLAGS) $*.c
393 $spitshell >>Makefile <<'!NO!SUBS!'
394 # The file ext.libs is a list of libraries that must be linked in
395 # for static extensions, e.g. -lm -lgdbm, etc. The individual
396 # static extension Makefile's add to it.
397 ext.libs: $(static_ext)
398 -@test -f ext.libs || touch ext.libs
402 # How to build libperl. This is still rather convoluted.
403 # Load up custom Makefile.SH fragment for shared loading and executables:
406 Makefile_s="$osname/Makefile.SHs"
412 $spitshell >>Makefile <<!GROK!THIS!
414 # In AIX we need to change this for building Perl itself from
415 # its earlier definition (which is for building external
416 # extensions *after* Perl has been built and installed)
417 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
420 case "$useshrplib" in
422 $spitshell >>Makefile <<'!NO!SUBS!'
424 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
425 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
427 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
428 $(RMS) $(LIBPERL_NONSHR)
429 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
431 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
432 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
433 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
435 MINIPERLEXP = $(MINIPERL_NONSHR)
437 LIBPERLEXPORT = perl.exp
443 $spitshell >>Makefile <<'!NO!SUBS!'
444 MINIPERLEXP = miniperl$(EXE_EXT)
446 PERLEXPORT = perl.exp
451 $spitshell >>Makefile <<'!NO!SUBS!'
452 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
453 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
454 sh mv-if-diff perl.exp.tmp perl.exp
459 $spitshell >>Makefile <<'!NO!SUBS!'
460 MINIPERLEXP = miniperl
462 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
463 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
464 sh mv-if-diff perl.exp.tmp perl5.def
470 if test -r $Makefile_s ; then
472 $spitshell >>Makefile <<!GROK!THIS!
474 Makefile: $Makefile_s
477 $spitshell >>Makefile <<'!NO!SUBS!'
478 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
480 case "$useshrplib" in
482 $spitshell >>Makefile <<'!NO!SUBS!'
483 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj)
487 $spitshell >>Makefile <<'!NO!SUBS!'
488 rm -f libperl$(OBJ_EXT)
489 mv $@ libperl$(OBJ_EXT)
490 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
496 $spitshell >>Makefile <<'!NO!SUBS!'
498 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
499 @$(ranlib) $(LIBPERL)
503 $spitshell >>Makefile <<'!NO!SUBS!'
505 # How to build executables.
507 # The $& notation tells Sequent machines that it can do a parallel make,
508 # and is harmless otherwise.
509 # The miniperl -w -MExporter line is a basic cheap test to catch errors
510 # before make goes on to run preplibrary and then MakeMaker on extensions.
511 # This is very handy because later errors are often caused by miniperl
512 # build problems but that's not obvious to the novice.
513 # The Module used here must not depend on Config or any extensions.
517 case "${osname}${osvers}" in
519 $spitshell >>Makefile <<'!NO!SUBS!'
520 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
521 $(CC) -o miniperl $(CLDFLAGS) \
522 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
523 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
524 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
528 $spitshell >>Makefile <<'!NO!SUBS!'
529 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
530 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
531 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
532 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
536 $spitshell >>Makefile <<'!NO!SUBS!'
537 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
539 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
540 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
541 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
546 $spitshell >>Makefile <<'!NO!SUBS!'
548 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
550 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
552 # Purify/Quantify Perls.
554 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
555 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
557 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
558 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
560 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
561 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
563 # Third Degree Perl (Tru64 only)
566 @echo "Checking optimize='-g' in config.sh..."
567 @grep "^optimize=" config.sh
568 @grep "^optimize='-g'" config.sh >/dev/null || exit 1
570 perl.third.config: config.sh
571 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
572 @$(MAKE) perl.config.dashg
573 @echo "Checking usemymalloc='n' in config.sh..."
574 @grep "^usemymalloc=" config.sh
575 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
577 perl.third: /usr/bin/atom perl.third.config perl
578 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
579 @echo "Now you may run perl.third and then study perl.3log."
581 # Pixie Perls (Tru64 and IRIX only)
583 perl.pixie.config: config.sh
584 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
585 @$(MAKE) perl.config.dashg
587 perl.pixie.atom: /usr/bin/atom perl
588 atom -tool pixie -L. -all -toolargs="-quiet" perl
590 perl.pixie.irix: perl
593 perl.pixie: /usr/bin/pixie perl.pixie.config perl
594 if test -x /usr/bin/atom; then \
595 $(MAKE) perl.pixie.atom; \
597 $(MAKE) perl.pixie.irix; \
599 @echo "Now you may run perl.pixie and then run pixie."
604 @echo "Checking optimize='-pg' in config.sh..."
605 @grep "^optimize=" config.sh
606 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
608 perl.gprof.config: config.sh
609 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
610 @$(MAKE) perl.config.dashpg
612 perl.gprof: /usr/bin/gprof perl.gprof.config
614 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
615 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
620 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
621 @echo "Checking gccversion in config.sh..."
622 @grep "^gccversion=" config.sh
623 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
624 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
625 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
626 @grep "^ccflags=" config.sh
627 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
629 perl.gcov: perl.config.gcov
631 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
632 @echo "Now you may run perl.gcov and then run gcov some.c."
634 # Microperl. This is just a convenience thing if one happens to
635 # build also the full Perl and therefore the real big Makefile:
636 # usually one should manually explicitly issue the below command.
640 $(MAKE) -f Makefile.micro
642 # This version, if specified in Configure, does ONLY those scripts which need
643 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
644 # checks as well as the special code to validate that the script in question
645 # has been invoked correctly.
647 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
648 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
654 $spitshell >>Makefile <<'!NO!SUBS!'
656 sperl$(OBJ_EXT): perl.c $(h)
658 $(LNS) perl.c sperl.c
659 $(CCCMD) -DIAMSUID sperl.c
662 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
663 # test -d lib/auto || mkdir lib/auto
664 # We need to autosplit in two steps because VOS can't handle so many args
667 preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
668 @sh ./makedir lib/auto
669 @echo " AutoSplitting perl library"
670 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
671 autosplit_lib_modules(@ARGV)' lib/*.pm
672 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
673 autosplit_lib_modules(@ARGV)' lib/*/*.pm
676 # Take care to avoid modifying lib/Config.pm without reason
677 # (If trying to create a new port and having problems with the configpm script,
678 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
679 lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
680 $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
681 sh mv-if-diff configpm.tmp $@
683 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
684 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
685 sh mv-if-diff minimod.tmp $@
686 -touch lib/ExtUtils/Miniperl.pm
688 lib/re.pm: ext/re/re.pm
689 cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
691 $(plextract): miniperl$(EXE_EXT) lib/Config.pm x2p/s2p
693 $(LDLIBPTH) ./miniperl -Ilib $@.PL
695 x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL
696 cd x2p; $(LDLIBPTH) $(MAKE) s2p
698 lib/lib.pm: miniperl$(EXE_EXT) lib/Config.pm
700 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
702 extra.pods: miniperl$(EXE_EXT)
703 -@test -f extra.pods && rm -f `cat extra.pods`
705 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
706 nx=`echo $$x | sed -e "s/README\.//"`; \
707 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
708 echo "pod/perl"$$nx".pod" >> extra.pods ; \
710 -@rm -f pod/perlvms.pod
711 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
713 extras.make: perl$(EXE_EXT)
714 -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
716 extras.test: perl$(EXE_EXT)
717 -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
719 extras.install: perl$(EXE_EXT)
720 -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
722 .PHONY: install install-strip install-all install-verbose install-silent \
723 no-install install.perl install.man install.html
726 $(MAKE) STRIPFLAGS=-s install
729 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
732 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
735 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
738 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
740 install.perl: all installperl
741 if [ -n "$(COMPILE)" ]; \
743 cd utils; $(MAKE) compile; \
744 cd ../x2p; $(MAKE) compile; \
745 cd ../pod; $(MAKE) compile; \
748 $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS)
749 $(MAKE) extras.install
751 install.man: all installman
752 $(LDLIBPTH) ./perl installman $(INSTALLFLAGS)
754 # XXX Experimental. Hardwired values, but useful for testing.
755 # Eventually Configure could ask for some of these values.
756 install.html: all installhtml
757 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
758 $(LDLIBPTH) ./perl installhtml \
759 --podroot=. --podpath=. --recurse \
760 --htmldir=$(privlib)/html \
761 --htmlroot=$(privlib)/html \
762 --splithead=pod/perlipc \
763 --splititem=pod/perlfunc \
764 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
768 # I now supply perly.c with the kits, so the following section is
769 # used only if you force byacc to run by saying
771 # Since we patch up the byacc output, the perly.fixer script needs
772 # to run with precisely the same version of byacc as I use. You
773 # normally shouldn't remake perly.[ch].
775 .PHONY: check_byacc run_byacc
778 @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2'
780 run_byacc: FORCE check_byacc
782 -chmod 664 perly.c perly.h
783 sh $(shellflags) ./perly.fixer y.tab.c perly.c
784 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
785 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
786 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
787 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
788 perl -i.old perlyline.pl perly.c
789 chmod 664 vms/perly_c.vms vms/perly_h.vms
790 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
792 # We don't want to regenerate perly.c and perly.h, but they might
793 # appear out-of-date after a patch is applied or a new distribution is
801 PERLYVMS = vms/perly_c.vms vms/perly_h.vms
803 $(PERLYVMS): perly.c perly.h vms/vms_yfix.pl
804 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
806 # No compat3.sym here since and including the 5.004_50.
807 # No interp.sym since 5.005_03.
808 SYM = global.sym globvar.sym perlio.sym pp.sym
810 SYMH = perlvars.h intrpvar.h thrdvar.h
814 # The following files are generated automatically
815 # keywords.pl: keywords.h
816 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
817 # [* embed.pl needs pp.sym generated by opcode.pl! *]
818 # embed.pl: proto.h embed.h embedvar.h global.sym
819 # perlapi.h perlapi.c pod/perlintern.pod
821 # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
823 # regcomp.pl: regnodes.h
824 # warnings.pl: warnings.h lib/warnings.pm
825 # The correct versions should be already supplied with the perl kit,
826 # in case you don't have perl available.
827 # To force them to be regenerated, type
830 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
831 embed.h embedvar.h global.sym \
832 pod/perlintern.pod pod/perlapi.pod \
833 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
834 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
835 warnings.h lib/warnings.pm
837 .PHONY: regen_headers regen_pods regen_all
840 -$(CHMOD_W) $(AUTOGEN_FILES)
850 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
852 regen_all: $(PERLYVMS) regen_headers regen_pods
855 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
856 # automatically get built. There should ordinarily be no need to change
857 # any of this part of makefile.
859 # The dummy dependency is a place holder in case $(dynamic_ext) or
860 # $(static_ext) is empty.
862 # DynaLoader may be needed for extensions that use Makefile.PL.
864 $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
865 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
867 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
868 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
870 s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
871 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
873 n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
874 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
876 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
877 realclean _realcleaner clobber _clobber \
878 distclean veryclean _verycleaner
882 realclean: _realcleaner _mopup
883 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
886 -@rm -f Cross/run-* Cross/to-* Cross/from-*
887 rm -f config.sh cppstdin Policy.sh extras.lst
889 clobber: _realcleaner _mopup _clobber
893 # Like distclean but also removes emacs backups and *.orig.
894 veryclean: _verycleaner _mopup _clobber
895 -@rm -f Obsolete Wanted
897 # Do not 'make _mopup' directly.
899 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
901 -@test -f extra.pods && rm -f `cat extra.pods`
902 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
903 -rm -f perl.exp ext.libs extra.pods opmini.o
904 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
905 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
906 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
907 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
908 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
909 -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
910 -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
911 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
913 # Do not 'make _tidy' directly.
915 -cd pod; $(LDLIBPTH) $(MAKE) clean
916 -cd utils; $(LDLIBPTH) $(MAKE) clean
917 -cd x2p; $(LDLIBPTH) $(MAKE) clean
918 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
919 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
921 rm -f testcompile compilelog
924 -cd os2; rm -f Makefile
925 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
926 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
927 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
928 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
929 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
932 # Some systems do not support "?", so keep these files separate.
934 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
935 rm -f core *perl.core t/core t/*perl.core
936 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
937 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
938 rm -rf $(addedbyconf)
939 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
942 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
943 rm -f h2ph.man pstruct
945 rm -f testcompile compilelog
946 -rmdir lib/B lib/Data lib/Digest
948 -rmdir lib/IO/Socket lib/IO/t lib/IO
949 -rmdir lib/Filter/Util lib/List lib/MIME lib/PerlIO lib/Scalar lib/Sys
950 -rmdir lib/Thread lib/XS lib/threads/shared lib/threads t/lib/B
953 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
954 @$(LDLIBPTH) $(MAKE) _cleaner2
957 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
958 @$(LDLIBPTH) $(MAKE) _cleaner2
959 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
961 # The following lint has practically everything turned on. Unfortunately,
962 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
963 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
968 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
970 # Need to unset during recursion to go out of loop.
971 # The README below ensures that the dependency list is never empty and
972 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
974 MAKEDEPEND = Makefile makedepend
976 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
977 $(MAKE) depend MAKEDEPEND=
979 config.h: config_h.SH config.sh
982 # When done, touch perlmain.c so that it doesn't get remade each time.
985 sh ./makedepend MAKE=$(MAKE)
986 - test -s perlmain.c && touch perlmain.c
987 cd x2p; $(MAKE) depend
989 # Cannot postpone this until $firstmakefile is ready ;-)
990 makedepend: makedepend.SH config.sh
993 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
994 test_tty test-tty _test_tty test_notty test-notty _test_notty \
995 utest ucheck test.utf8 check.utf8 test.torture torturetest \
996 test.third check.third utest.third ucheck.third test_notty.third \
997 test.deparse test_notty.deparse \
1000 # Cannot delegate rebuilding of t/perl to make
1001 # to allow interlaced test and minitest
1006 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1008 # Architecture-neutral stuff:
1010 test_prep_pre: preplibrary utilities $(nonxs_ext)
1012 test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1013 PERL=./perl $(MAKE) _test_prep
1016 cd t && $(LDLIBPTH) $(PERL_DEBUG) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1019 cd t && $(LDLIBPTH) $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(PERL) $(TESTFILE) $(TEST_ARGS)
1021 # The second branch is for testing without a tty or controlling terminal,
1024 if (true </dev/tty) >/dev/null 2>&1; then \
1025 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
1027 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1029 @echo "Ran tests" > t/rantests
1031 test check: test_prep
1032 PERL=./perl $(MAKE) _test
1035 PERL=./perl $(MAKE) _test_tty
1037 test_notty: test_prep
1038 PERL=./perl $(MAKE) _test_notty
1040 utest ucheck test.utf8 check.utf8: test_prep
1041 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1044 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1046 test-prep: test_prep
1050 test-notty: test_notty
1054 test.torture torturetest: test_prep
1055 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1057 # Targets for Third Degree testing.
1059 test_prep.third: test_prep perl.third
1060 PERL=./perl.third $(MAKE) _test_prep
1062 test.third check.third: test_prep.third perl.third
1063 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1065 utest.third ucheck.third: test_prep.third perl.third
1066 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1068 test_notty.third: test_prep.third perl.third
1069 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1071 # Targets for Deparse testing.
1073 test.deparse: test_prep
1074 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1076 test_notty.deparse: test_prep
1077 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1079 # Can't depend on lib/Config.pm because that might be where miniperl
1081 minitest: miniperl$(EXE_EXT) lib/re.pm
1082 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1083 $(MAKE) lib/Config.pm lib/lib.pm
1085 @echo "You may see some irrelevant test failures if you have been unable"
1086 @echo "to build lib/Config.pm or lib/lib.pm."
1088 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1089 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1093 test_harness: test_prep
1094 PERL=./perl $(MAKE) TESTFILE=harness _test
1096 # Handy way to run perlbug -ok without having to install and run the
1097 # installed perlbug. We don't re-run the tests here - we trust the user.
1098 # Please *don't* use this unless all tests pass.
1099 # If you want to report test failures, use "make nok" instead.
1101 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1104 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1107 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1110 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1112 okfilenack: utilities
1113 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1116 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1119 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1122 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1124 nokfilenack: utilities
1125 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1127 .PHONY: clist hlist shlist pllist
1130 echo $(c) | tr ' ' $(TRNL) >.clist
1133 echo $(h) | tr ' ' $(TRNL) >.hlist
1136 echo $(sh) | tr ' ' $(TRNL) >.shlist
1139 echo $(pl) | tr ' ' $(TRNL) >.pllist
1141 Makefile: Makefile.SH ./config.sh
1142 $(SHELL) Makefile.SH
1146 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1149 elc: emacs/cperl-mode.elc
1151 emacs/cperl-mode.elc: emacs/cperl-mode.el
1152 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1154 .PHONY: etags ctags tags
1158 TAGS: emacs/cperl-mode.elc
1163 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1164 # This may also fail if . is in the head of the path, since perl will
1167 perl emacs/e2ctags.pl TAGS > tags
1169 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1170 # If this runs make out of memory, delete /usr/include lines.
1177 $ln Makefile ../Makefile
1180 $rm -f $firstmakefile
1182 # Now do any special processing required before building.
1187 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
1190 rm -f y.tab.c y.tab.h
1191 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
1192 yacc -d perly.y >/dev/null 2>&1
1193 if cmp -s y.tab.c perly.c; then
1196 echo "perly.y -> perly.c" >&2
1197 mv -f y.tab.c perly.c
1199 sed -e '/^#include "perl\.h"/a\
1201 #define yydebug PL_yydebug\
1202 #define yynerrs PL_yynerrs\
1203 #define yyerrflag PL_yyerrflag\
1204 #define yychar PL_yychar\
1205 #define yyval PL_yyval\
1206 #define yylval PL_yylval' \
1207 -e '/YYSTYPE *yyval;/D' \
1208 -e '/YYSTYPE *yylval;/D' \
1209 -e '/int yychar,/,/yynerrs;/D' \
1210 -e 's/int yydebug = 0;/yydebug = 0;/' \
1211 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
1212 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1213 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1216 if cmp -s y.tab.h perly.h; then
1219 echo "perly.y -> perly.h" >&2
1220 mv -f y.tab.h perly.h
1225 rm -f y.tab.c y.tab.h
1228 # we are using two different yaccs in BS2000 Posix!
1229 byacc a2p.y >/dev/null 2>&1
1232 yacc a2p.y >/dev/null 2>&1
1235 if cmp -s y.tab.c a2p.c
1239 echo "a2p.y -> a2p.c" >&2
1242 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1243 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1244 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1247 # In case somebody yacc -d:ed the a2p.y.
1250 if cmp -s y.tab.h a2p.h
1254 echo "a2p.h -> a2p.h" >&2
1263 # Do nothing in VM/ESA.
1266 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1270 '') echo "No parser files were regenerated. That's okay." >&2 ;;