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/:*$//'`
102 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
107 # If there is a pre-existing $libperl from a previous
108 # installation, Linux needs to use LD_PRELOAD to
109 # override the LD_LIBRARY_PATH setting. See the
110 # INSTALL file, under "Building a shared perl library".
111 # If there is no pre-existing $libperl, we don't need
112 # to do anything further.
113 if test -f $archlib/CORE/$libperl; then
115 cat <<'EOT' > preload
119 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
123 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
126 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
133 static_target='static'
137 : Prepare dependency lists for Makefile.
139 for f in $dynamic_ext; do
140 : the dependency named here will never exist
141 base=`echo "$f" | sed 's/.*\///'`
142 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
146 for f in $static_ext; do
147 base=`echo "$f" | sed 's/.*\///'`
148 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
152 for f in $nonxs_ext; do
153 base=`echo "$f" | sed 's/.*\///'`
154 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
157 # Handle the usage of different yaccs in posix-bc (During Configure we
158 # us yacc for perly.y and byacc for a2p.y. The makefiles must use the
159 # same configuration for run_byacc!):
166 echo "Extracting Makefile (with variable substitutions)"
167 $spitshell >Makefile <<!GROK!THIS!
169 # This file is derived from Makefile.SH. Any changes made here will
170 # be lost the next time you run Configure.
171 # Makefile is used to generate $firstmakefile. The only difference
172 # is that $firstmakefile has the dependencies filled in at the end.
175 # I now supply perly.c with the kits, so don't remake perly.c without byacc
183 mallocsrc = $mallocsrc
184 mallocobj = $mallocobj
186 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
191 # The following are mentioned only to make metaconfig include the
192 # appropriate questions in Configure. If you want to change these,
193 # edit config.sh instead, or specify --man1dir=/wherever on
194 # installman commandline.
196 scriptdir = $scriptdir
197 shrpdir = $archlibexp/CORE
198 privlib = $installprivlib
204 # The following are used to build and install shared libraries for
206 LDDLFLAGS = $lddlflags
207 SHRPLDFLAGS = $shrpldflags
208 CCDLFLAGS = $ccdlflags
210 PLDLFLAGS = $pldlflags
212 LLIBPERL= $linklibperl
215 # Static targets are ordinarily built without CCCDLFLAGS. However,
216 # if building a shared libperl.so that might later be linked into
217 # another application, then it might be appropriate to also build static
218 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
219 # for GNU cc). This is handled by ext/util/make_ext.
220 STATIC = $static_target
222 # The following is used to include the current directory in
223 # the dynamic loader path you are building a shared libperl.
226 dynamic_ext = $dynamic_list
227 static_ext = $static_list
228 nonxs_ext = $nonxs_list
229 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
230 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
232 libs = $perllibs $cryptlib
234 public = perl\$(EXE_EXT) $suidperl utilities translators
236 shellflags = $shellflags
238 # This is set to MAKE=$make if your $make command doesn't
242 # Mention $gmake here so it gets probed for by Configure.
244 # These variables may need to be manually set for non-Unix systems.
251 FIRSTMAKEFILE = $firstmakefile
253 # Any special object files needed by this architecture, e.g. os2/os2.obj
256 .SUFFIXES: .c \$(OBJ_EXT) .i .s
261 # how to tr(anslate) newlines
268 INSTALLPREFIXEXP = $prefix
271 # not used by Makefile but by installperl;
272 # mentioned here so that metaconfig picks these up
276 case "${osname}:${osvers}" in
278 $spitshell >>Makefile <<EOF
280 # Your locales are broken (osname $osname, osvers $osvers)
281 # and to avoid the numerous
282 # perl: warning: Setting locale failed.
283 # warnings during the build process we reset the locale variables.
292 ## In the following dollars and backticks do not need the extra backslash.
293 $spitshell >>Makefile <<'!NO!SUBS!'
295 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
297 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
299 private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
301 # Files to be built with variable substitution before miniperl
303 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
304 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
306 shextract = Makefile cflags config.h makeaperl makedepend \
307 makedir myconfig writemain pod/Makefile
309 # Files to be built with variable substitution after miniperl is
310 # available. Dependencies handled manually below (for now).
312 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
313 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
315 # lib/lib.pm is not listed here because it has a rule of its own.
316 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
317 pod/pod2usage pod/podchecker pod/podselect
319 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
321 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
322 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
323 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
324 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
325 h5 = utf8.h warnings.h
326 h = $(h1) $(h2) $(h3) $(h4) $(h5)
328 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
329 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
330 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
331 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
333 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
335 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)
336 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)
337 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)
339 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
344 $(CCCMD) $(PLDLFLAGS) $*.c
347 $(CCCMDSRC) -E $*.c > $*.i
352 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
354 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
356 .PHONY: all compile translators utilities
359 echo "testing compilation" > testcompile;
360 cd utils; $(MAKE) compile;
361 cd x2p; $(MAKE) compile;
362 cd pod; $(MAKE) compile;
364 translators: miniperl$(EXE_EXT) lib/Config.pm FORCE
365 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
367 utilities: miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
368 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
371 # This is now done by installman only if you actually want the man pages.
372 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
374 # Phony target to force checking subdirectories.
375 # Apparently some makes require an action for the FORCE target.
380 $spitshell >>Makefile <<!GROK!THIS!
382 # We do a copy of the op.c instead of a symlink because gcc gets huffy
383 # if we have a symlink forest to another disk (it complains about too many
384 # levels of symbolic links, even if we have only two)
386 opmini\$(OBJ_EXT): op.c config.h
388 \$(CPS) op.c opmini.c
389 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
393 $spitshell >>Makefile <<'!NO!SUBS!'
394 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
395 $(CCCMD) $(PLDLFLAGS) $*.c
397 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
398 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
399 sh mv-if-diff writemain.tmp perlmain.c
404 ;; # Let cygwin/Makefile.SHs do its work.
406 $spitshell >>Makefile <<'!NO!SUBS!'
407 perlmain$(OBJ_EXT): perlmain.c
408 $(CCCMD) $(PLDLFLAGS) $*.c
413 $spitshell >>Makefile <<'!NO!SUBS!'
414 # The file ext.libs is a list of libraries that must be linked in
415 # for static extensions, e.g. -lm -lgdbm, etc. The individual
416 # static extension Makefile's add to it.
417 ext.libs: $(static_ext)
418 -@test -f ext.libs || touch ext.libs
422 # How to build libperl. This is still rather convoluted.
423 # Load up custom Makefile.SH fragment for shared loading and executables:
426 Makefile_s="$osname/Makefile.SHs"
432 $spitshell >>Makefile <<!GROK!THIS!
434 # In AIX we need to change this for building Perl itself from
435 # its earlier definition (which is for building external
436 # extensions *after* Perl has been built and installed)
437 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
440 case "$useshrplib" in
442 $spitshell >>Makefile <<'!NO!SUBS!'
444 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
445 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
447 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
448 $(RMS) $(LIBPERL_NONSHR)
449 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
451 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
452 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
453 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
455 MINIPERLEXP = $(MINIPERL_NONSHR)
457 LIBPERLEXPORT = perl.exp
463 $spitshell >>Makefile <<'!NO!SUBS!'
464 MINIPERLEXP = miniperl$(EXE_EXT)
466 PERLEXPORT = perl.exp
471 $spitshell >>Makefile <<'!NO!SUBS!'
472 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
473 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp
474 sh mv-if-diff perl.exp.tmp perl.exp
479 $spitshell >>Makefile <<'!NO!SUBS!'
480 MINIPERLEXP = miniperl
482 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
483 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp
484 sh mv-if-diff perl.exp.tmp perl5.def
490 if test -r $Makefile_s ; then
492 $spitshell >>Makefile <<!GROK!THIS!
494 Makefile: $Makefile_s
497 $spitshell >>Makefile <<'!NO!SUBS!'
498 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
500 case "$useshrplib" in
502 $spitshell >>Makefile <<'!NO!SUBS!'
503 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs)
507 $spitshell >>Makefile <<'!NO!SUBS!'
508 rm -f libperl$(OBJ_EXT)
509 mv $@ libperl$(OBJ_EXT)
510 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
516 $spitshell >>Makefile <<'!NO!SUBS!'
518 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
519 @$(ranlib) $(LIBPERL)
523 $spitshell >>Makefile <<'!NO!SUBS!'
525 # How to build executables.
527 # The $& notation tells Sequent machines that it can do a parallel make,
528 # and is harmless otherwise.
529 # The miniperl -w -MExporter line is a basic cheap test to catch errors
530 # before make goes on to run preplibrary and then MakeMaker on extensions.
531 # This is very handy because later errors are often caused by miniperl
532 # build problems but that's not obvious to the novice.
533 # The Module used here must not depend on Config or any extensions.
537 case "${osname}${osvers}" in
539 $spitshell >>Makefile <<'!NO!SUBS!'
540 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
541 $(CC) -o miniperl $(CLDFLAGS) \
542 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
543 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
544 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
548 $spitshell >>Makefile <<'!NO!SUBS!'
549 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
550 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
551 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
552 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
558 *) case "$ldflags" in
559 *"-flat_namespace"*) ;;
560 *) # to allow opmini.o to override stuff in libperl.dylib
561 $spitshell >>Makefile <<!NO!SUBS!
562 NAMESPACEFLAGS = -force_flat_namespace
568 $spitshell >>Makefile <<'!NO!SUBS!'
569 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
571 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \
572 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
573 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
577 $spitshell >>Makefile <<'!NO!SUBS!'
578 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
580 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
581 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
582 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
587 $spitshell >>Makefile <<'!NO!SUBS!'
589 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
591 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
593 # Purify/Quantify Perls.
595 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
596 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
598 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
599 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
601 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
602 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
604 # Valgrind perl (currently Linux only)
606 perl.valgrind.config: config.sh
607 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
608 @$(MAKE) perl.config.dashg
609 @echo "Checking usemymalloc='n' in config.sh..."
610 @grep "^usemymalloc=" config.sh
611 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
612 @echo "And of course you have to have valgrind..."
613 valgrind ./perl -e 1 2>/dev/null || exit 1
615 # Third Degree Perl (Tru64 only)
618 @echo "Checking optimize='-g' in config.sh..."
619 @grep "^optimize=" config.sh
620 @grep "^optimize='-g'" config.sh >/dev/null || exit 1
622 perl.third.config: config.sh
623 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
624 @$(MAKE) perl.config.dashg
625 @echo "Checking usemymalloc='n' in config.sh..."
626 @grep "^usemymalloc=" config.sh
627 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
629 perl.third: /usr/bin/atom perl.third.config perl
630 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
631 @echo "Now you may run perl.third and then study perl.3log."
633 # Pixie Perls (Tru64 and IRIX only)
635 perl.pixie.config: config.sh
636 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
637 @$(MAKE) perl.config.dashg
639 perl.pixie.atom: /usr/bin/atom perl
640 atom -tool pixie -L. -all -toolargs="-quiet" perl
642 perl.pixie.irix: perl
645 perl.pixie: /usr/bin/pixie perl.pixie.config perl
646 if test -x /usr/bin/atom; then \
647 $(MAKE) perl.pixie.atom; \
649 $(MAKE) perl.pixie.irix; \
651 @echo "Now you may run perl.pixie and then run pixie."
656 @echo "Checking optimize='-pg' in config.sh..."
657 @grep "^optimize=" config.sh
658 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
660 perl.gprof.config: config.sh
661 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
662 @$(MAKE) perl.config.dashpg
664 perl.gprof: /usr/bin/gprof perl.gprof.config
666 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
667 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
672 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
673 @echo "Checking gccversion in config.sh..."
674 @grep "^gccversion=" config.sh
675 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
676 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
677 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
678 @grep "^ccflags=" config.sh
679 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
681 perl.gcov: perl.config.gcov
683 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
684 @echo "Now you may run perl.gcov and then run gcov some.c."
686 # Microperl. This is just a convenience thing if one happens to
687 # build also the full Perl and therefore the real big Makefile:
688 # usually one should manually explicitly issue the below command.
692 $(MAKE) -f Makefile.micro
694 # This version, if specified in Configure, does ONLY those scripts which need
695 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
696 # checks as well as the special code to validate that the script in question
697 # has been invoked correctly.
699 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
700 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
706 $spitshell >>Makefile <<'!NO!SUBS!'
708 sperl$(OBJ_EXT): perl.c $(h)
710 $(LNS) perl.c sperl.c
711 $(CCCMD) -DIAMSUID sperl.c
714 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
715 # test -d lib/auto || mkdir lib/auto
716 # We need to autosplit in two steps because VOS can't handle so many args
719 preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
720 @sh ./makedir lib/auto
721 @echo " AutoSplitting perl library"
722 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
723 autosplit_lib_modules(@ARGV)' lib/*.pm
724 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
725 autosplit_lib_modules(@ARGV)' lib/*/*.pm
728 # Take care to avoid modifying lib/Config.pm without reason
729 # (If trying to create a new port and having problems with the configpm script,
730 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
731 lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
732 $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
733 sh mv-if-diff configpm.tmp $@
735 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
736 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
737 sh mv-if-diff minimod.tmp $@
738 -touch lib/ExtUtils/Miniperl.pm
740 lib/re.pm: ext/re/re.pm
741 cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
743 $(plextract): miniperl$(EXE_EXT) lib/Config.pm x2p/s2p
745 $(LDLIBPTH) ./miniperl -Ilib $@.PL
747 x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL
748 cd x2p; $(LDLIBPTH) $(MAKE) s2p
750 lib/lib.pm: miniperl$(EXE_EXT) lib/Config.pm
752 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
754 extra.pods: miniperl$(EXE_EXT)
755 -@test -f extra.pods && rm -f `cat extra.pods`
757 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
758 nx=`echo $$x | sed -e "s/README\.//"`; \
759 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
760 echo "pod/perl"$$nx".pod" >> extra.pods ; \
762 -@rm -f pod/perlvms.pod
763 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
765 extras.make: perl$(EXE_EXT)
766 -@test -s extras.lst && PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
768 extras.test: perl$(EXE_EXT)
769 -@test -s extras.lst && PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
771 extras.install: perl$(EXE_EXT)
772 -@test -s extras.lst && PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
774 .PHONY: install install-strip install-all install-verbose install-silent \
775 no-install install.perl install.man install.html
777 META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
778 $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
781 $(MAKE) STRIPFLAGS=-s install
784 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
787 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
790 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
793 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
795 install.perl: all installperl
796 if [ -n "$(COMPILE)" ]; \
798 cd utils; $(MAKE) compile; \
799 cd ../x2p; $(MAKE) compile; \
800 cd ../pod; $(MAKE) compile; \
803 $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
804 $(MAKE) extras.install
806 install.man: all installman
807 $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
809 # XXX Experimental. Hardwired values, but useful for testing.
810 # Eventually Configure could ask for some of these values.
811 install.html: all installhtml
812 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
813 $(LDLIBPTH) ./perl installhtml \
814 --podroot=. --podpath=. --recurse \
815 --htmldir=$(privlib)/html \
816 --htmlroot=$(privlib)/html \
817 --splithead=pod/perlipc \
818 --splititem=pod/perlfunc \
819 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
823 # I now supply perly.c with the kits, so the following section is
824 # used only if you force byacc to run by saying
826 # Since we patch up the byacc output, the perly.fixer script needs
827 # to run with precisely the same version of byacc as I use. You
828 # normally shouldn't remake perly.[ch].
830 .PHONY: check_byacc run_byacc
833 @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2'
835 run_byacc: FORCE check_byacc
837 -chmod 664 perly.c perly.h
838 sh $(shellflags) ./perly.fixer y.tab.c perly.c
839 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
840 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
841 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
842 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
843 perl -i.old perlyline.pl perly.c
844 chmod 664 vms/perly_c.vms vms/perly_h.vms
845 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
847 # We don't want to regenerate perly.c and perly.h, but they might
848 # appear out-of-date after a patch is applied or a new distribution is
856 PERLYVMS = vms/perly_c.vms vms/perly_h.vms
858 $(PERLYVMS): perly.c perly.h vms/vms_yfix.pl
859 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
861 # No compat3.sym here since and including the 5.004_50.
862 # No interp.sym since 5.005_03.
863 SYM = global.sym globvar.sym perlio.sym pp.sym
865 SYMH = perlvars.h intrpvar.h thrdvar.h
869 # The following files are generated automatically
870 # autodoc.pl: pod/perlapi.pod pod/perlintern.pod
871 # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
873 # embed.pl: proto.h embed.h embedvar.h global.sym
874 # perlapi.h perlapi.c
875 # [* embed.pl needs pp.sym generated by opcode.pl! *]
876 # keywords.pl: keywords.h
877 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
878 # regcomp.pl: regnodes.h
879 # warnings.pl: warnings.h lib/warnings.pm
880 # The correct versions should be already supplied with the perl kit,
881 # in case you don't have perl available.
882 # To force them to be regenerated, run
884 # with your existing copy of perl
885 # (make regen_headers is kept for backwards compatibility)
887 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
888 embed.h embedvar.h global.sym \
889 pod/perlintern.pod pod/perlapi.pod \
890 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
891 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
892 warnings.h lib/warnings.pm
894 .PHONY: regen_headers regen_pods regen_all
896 regen regen_headers: FORCE
900 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
902 regen_all: $(PERLYVMS) regen regen_pods
904 .PHONY: manisort manicheck
907 LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
908 LC_ALL=C sort -fdo MANIFEST MANIFEST)
911 perl Porting/manicheck
914 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
915 # automatically get built. There should ordinarily be no need to change
916 # any of this part of makefile.
918 # The dummy dependency is a place holder in case $(dynamic_ext) or
919 # $(static_ext) is empty.
921 # DynaLoader may be needed for extensions that use Makefile.PL.
923 $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
924 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
926 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
927 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
929 s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
930 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
932 n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
933 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
935 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
936 realclean _realcleaner clobber _clobber \
937 distclean veryclean _verycleaner
941 realclean: _realcleaner _mopup
942 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
945 -@rm -f Cross/run-* Cross/to-* Cross/from-*
946 rm -f config.sh cppstdin Policy.sh extras.lst
948 clobber: _realcleaner _mopup _clobber
952 # Like distclean but also removes emacs backups and *.orig.
953 veryclean: _verycleaner _mopup _clobber
954 -@rm -f Obsolete Wanted
956 # Do not 'make _mopup' directly.
958 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
960 -@test -f extra.pods && rm -f `cat extra.pods`
961 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
962 -rm -f perl.exp ext.libs extra.pods opmini.o
963 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
964 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
965 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
966 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
967 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
968 -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
969 -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
970 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
972 # Do not 'make _tidy' directly.
974 -cd pod; $(LDLIBPTH) $(MAKE) clean
975 -cd utils; $(LDLIBPTH) $(MAKE) clean
976 -cd x2p; $(LDLIBPTH) $(MAKE) clean
977 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
978 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
980 rm -f testcompile compilelog
983 -cd os2; rm -f Makefile
984 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
985 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
986 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
987 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
988 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
991 # Some systems do not support "?", so keep these files separate.
993 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
994 rm -f core *perl.core t/core t/*perl.core
995 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
996 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
997 rm -rf $(addedbyconf)
998 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
999 rm -f $(private) lib/Config.pod
1001 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1002 rm -f h2ph.man pstruct
1005 rm -f testcompile compilelog
1006 -rmdir lib/B lib/Data lib/Digest
1008 -rmdir lib/Filter/Util lib/IO/Socket lib/IO
1009 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1010 -rmdir lib/threads lib/XS
1013 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1014 @$(LDLIBPTH) $(MAKE) _cleaner2
1017 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1018 @$(LDLIBPTH) $(MAKE) _cleaner2
1019 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1021 # The following lint has practically everything turned on. Unfortunately,
1022 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
1023 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
1028 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
1030 # Need to unset during recursion to go out of loop.
1031 # The README below ensures that the dependency list is never empty and
1032 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1034 MAKEDEPEND = Makefile makedepend
1036 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1037 $(MAKE) depend MAKEDEPEND=
1039 config.h: config_h.SH config.sh
1040 $(SHELL) config_h.SH
1042 # When done, touch perlmain.c so that it doesn't get remade each time.
1045 sh ./makedepend MAKE=$(MAKE)
1046 - test -s perlmain.c && touch perlmain.c
1047 cd x2p; $(MAKE) depend
1049 # Cannot postpone this until $firstmakefile is ready ;-)
1050 makedepend: makedepend.SH config.sh
1053 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1054 test_tty test-tty _test_tty test_notty test-notty _test_notty \
1055 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1056 test.third check.third utest.third ucheck.third test_notty.third \
1057 test.deparse test_notty.deparse test_harness test_harness_notty \
1058 test.bytecompile minitest coretest
1060 # Cannot delegate rebuilding of t/perl to make
1061 # to allow interlaced test and minitest
1066 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1068 # Architecture-neutral stuff:
1070 test_prep_pre: preplibrary utilities $(nonxs_ext)
1072 test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1073 PERL=./perl $(MAKE) _test_prep
1076 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1079 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
1081 # The second branch is for testing without a tty or controlling terminal,
1084 if (true </dev/tty) >/dev/null 2>&1; then \
1085 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
1087 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1089 @echo "Ran tests" > t/rantests
1091 test check: test_prep
1092 PERL=./perl $(MAKE) _test
1095 PERL=./perl $(MAKE) _test_tty
1097 test_notty: test_prep
1098 PERL=./perl $(MAKE) _test_notty
1100 utest ucheck test.utf8 check.utf8: test_prep
1101 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1104 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1106 test-prep: test_prep
1110 test-notty: test_notty
1114 test.torture torturetest: test_prep
1115 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1117 # Targets for valgrind testing:
1119 test_prep.valgrind: test_prep perl.valgrind
1120 PERL=./perl $(MAKE) _test_prep
1122 test.valgrind check.valgrind: test_prep perl.valgrind.config
1123 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test
1125 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind
1126 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1128 test_notty.valgrind: test_prep.valgrind perl.valgrind
1129 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1131 # Targets for Third Degree testing.
1133 test_prep.third: test_prep perl.third
1134 PERL=./perl.third $(MAKE) _test_prep
1136 test.third check.third: test_prep.third perl.third
1137 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1139 utest.third ucheck.third: test_prep.third perl.third
1140 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1142 test_notty.third: test_prep.third perl.third
1143 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1145 # Targets for Bytecode/ByteLoader testing.
1147 test.bytecompile: test_prep
1148 PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test
1150 # Targets for Deparse testing.
1152 test.deparse: test_prep
1153 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1155 test_notty.deparse: test_prep
1156 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1158 # Can't depend on lib/Config.pm because that might be where miniperl
1160 minitest: miniperl$(EXE_EXT) lib/re.pm
1161 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1162 $(MAKE) lib/Config.pm lib/lib.pm
1164 @echo "You may see some irrelevant test failures if you have been unable"
1165 @echo "to build lib/Config.pm or lib/lib.pm."
1167 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1168 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1172 test_harness: test_prep
1173 PERL=./perl $(MAKE) TESTFILE=harness _test
1175 test_harness_notty: test_prep
1176 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1178 # Handy way to run perlbug -ok without having to install and run the
1179 # installed perlbug. We don't re-run the tests here - we trust the user.
1180 # Please *don't* use this unless all tests pass.
1181 # If you want to report test failures, use "make nok" instead.
1183 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1186 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1189 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1192 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1194 okfilenack: utilities
1195 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1198 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1201 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1204 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1206 nokfilenack: utilities
1207 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1209 .PHONY: clist hlist shlist pllist
1212 echo $(c) | tr ' ' $(TRNL) >.clist
1215 echo $(h) | tr ' ' $(TRNL) >.hlist
1218 echo $(sh) | tr ' ' $(TRNL) >.shlist
1221 echo $(pl) | tr ' ' $(TRNL) >.pllist
1223 Makefile: Makefile.SH ./config.sh
1224 $(SHELL) Makefile.SH
1228 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1231 elc: emacs/cperl-mode.elc
1233 emacs/cperl-mode.elc: emacs/cperl-mode.el
1234 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1236 .PHONY: etags ctags tags
1240 TAGS: emacs/cperl-mode.elc
1245 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1246 # This may also fail if . is in the head of the path, since perl will
1249 perl emacs/e2ctags.pl TAGS > tags
1251 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1252 # If this runs make out of memory, delete /usr/include lines.
1259 $ln Makefile ../Makefile
1262 $rm -f $firstmakefile
1264 # Now do any special processing required before building.
1269 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1272 rm -f y.tab.c y.tab.h
1273 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
1274 yacc -d perly.y >/dev/null 2>&1
1275 if cmp -s y.tab.c perly.c; then
1278 echo "perly.y -> perly.c" >&2
1279 mv -f y.tab.c perly.c
1281 sed -e '/^#include "perl\.h"/a\
1283 #define yydebug PL_yydebug\
1284 #define yynerrs PL_yynerrs\
1285 #define yyerrflag PL_yyerrflag\
1286 #define yychar PL_yychar\
1287 #define yyval PL_yyval\
1288 #define yylval PL_yylval' \
1289 -e '/YYSTYPE *yyval;/D' \
1290 -e '/YYSTYPE *yylval;/D' \
1291 -e '/int yychar,/,/yynerrs;/D' \
1292 -e 's/int yydebug = 0;/yydebug = 0;/' \
1293 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
1294 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1295 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1298 case "$osname:$usethreads" in
1300 sed -e 's@^extern int yychar, yyerrflag;@/* extern int yychar, yyerrflag; */@' perly.c > perly.tmp && mv perly.tmp perly.c
1303 if cmp -s y.tab.h perly.h; then
1306 echo "perly.y -> perly.h" >&2
1307 mv -f y.tab.h perly.h
1312 rm -f y.tab.c y.tab.h
1315 # we are using two different yaccs in BS2000 Posix!
1316 byacc a2p.y >/dev/null 2>&1
1319 yacc a2p.y >/dev/null 2>&1
1322 if cmp -s y.tab.c a2p.c
1326 echo "a2p.y -> a2p.c" >&2
1329 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1330 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1331 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1334 # In case somebody yacc -d:ed the a2p.y.
1337 if cmp -s y.tab.h a2p.h
1341 echo "a2p.h -> a2p.h" >&2
1350 # Do nothing in VM/ESA.
1353 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1357 '') echo "No parser files were regenerated. That's okay." >&2 ;;