2 case $PERL_CONFIG_SH in
7 echo "Can't find config.sh."; exit 1
13 # H.Merijn Brand [17 Feb 2004]
14 # This comment is just to ensure that Configure will find variables that
15 # are removed/replaced in patches on blead, but are still needed in the
16 # 5.8.x, 5.6.x and 5.005.x maintainance tracks.
17 # metaconfig -m will scan all .SH files on this level (not deeper), and
18 # not in x2p and other subfolders. This file is as good as any .SH
23 : This forces SH files to create target in same directory as SH file.
24 : This is so that make depend always knows where to find SH derivatives.
26 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
30 *define*) suidperl='suidperl' ;;
34 linklibperl='$(LIBPERL)'
35 shrpldflags='$(LDDLFLAGS)'
37 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
40 # Prefix all runs of 'miniperl' and 'perl' with
41 # $ldlibpth so that ./perl finds *this* shared libperl.
42 case "$LD_LIBRARY_PATH" in
44 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
46 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
49 pldlflags="$cccdlflags"
50 static_target='static_pic'
51 case "${osname}${osvers}" in
54 lddlflags="-dynamic -undefined warning -framework System \
55 -compatibility_version 1 -current_version $patchlevel \
56 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
59 shrpldflags="${ldflags} -dynamiclib \
60 -compatibility_version \
61 ${api_revision}.${api_version}.${api_subversion} \
63 ${revision}.${patchlevel}.${subversion} \
64 -install_name \$(shrpdir)/\$@"
72 netbsd*|freebsd[234]*|openbsd*)
73 linklibperl="-L. -lperl"
76 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
78 3*) shrpldflags="$shrpldflags -e _nostart"
80 *) shrpldflags="$shrpldflags -b noentry"
83 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
84 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
87 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
90 shrpldflags='-W l,dll'
91 linklibperl='libperl.x'
92 DPERL_EXTERNAL_GLOB=''
95 case "$ldlibpthname" in
103 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
106 # Strip off any trailing :'s
107 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
113 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
118 # If there is a pre-existing $libperl from a previous
119 # installation, Linux needs to use LD_PRELOAD to
120 # override the LD_LIBRARY_PATH setting. See the
121 # INSTALL file, under "Building a shared perl library".
122 # If there is no pre-existing $libperl, we don't need
123 # to do anything further.
124 if test -f $archlib/CORE/$libperl; then
126 cat <<'EOT' > preload
130 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
134 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
137 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
144 static_target='static'
148 : Prepare dependency lists for Makefile.
150 for f in $dynamic_ext; do
151 : the dependency named here will never exist
152 base=`echo "$f" | sed 's/.*\///'`
153 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
157 for f in $static_ext; do
158 base=`echo "$f" | sed 's/.*\///'`
159 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
163 for f in $nonxs_ext; do
164 base=`echo "$f" | sed 's/.*\///'`
165 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
168 echo "Extracting Makefile (with variable substitutions)"
169 $spitshell >Makefile <<!GROK!THIS!
171 # This file is derived from Makefile.SH. Any changes made here will
172 # be lost the next time you run Configure.
173 # Makefile is used to generate $firstmakefile. The only difference
174 # is that $firstmakefile has the dependencies filled in at the end.
182 mallocsrc = $mallocsrc
183 mallocobj = $mallocobj
185 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
190 # The following are mentioned only to make metaconfig include the
191 # appropriate questions in Configure. If you want to change these,
192 # edit config.sh instead, or specify --man1dir=/wherever on
193 # installman commandline.
195 scriptdir = $scriptdir
196 shrpdir = $archlibexp/CORE
197 privlib = $installprivlib
203 # The following are used to build and install shared libraries for
205 LDDLFLAGS = $lddlflags
206 SHRPLDFLAGS = $shrpldflags
207 CCDLFLAGS = $ccdlflags
209 PLDLFLAGS = $pldlflags
211 LLIBPERL= $linklibperl
214 # Static targets are ordinarily built without CCCDLFLAGS. However,
215 # if building a shared libperl.so that might later be linked into
216 # another application, then it might be appropriate to also build static
217 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
218 # for GNU cc). This is handled by ext/util/make_ext.
219 STATIC = $static_target
221 # The following is used to include the current directory in
222 # the dynamic loader path you are building a shared libperl.
225 dynamic_ext = $dynamic_list
226 static_ext = $static_list
227 nonxs_ext = $nonxs_list
228 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
229 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
231 libs = $perllibs $cryptlib
233 public = perl\$(EXE_EXT) $suidperl utilities translators
235 shellflags = $shellflags
237 # This is set to MAKE=$make if your $make command doesn't
241 # Mention $gmake here so it gets probed for by Configure.
243 # These variables may need to be manually set for non-Unix systems.
250 FIRSTMAKEFILE = $firstmakefile
252 # Any special object files needed by this architecture, e.g. os2/os2.obj
255 .SUFFIXES: .c \$(OBJ_EXT) .i .s
260 # how to tr(anslate) newlines
267 INSTALLPREFIXEXP = $prefix
270 # not used by Makefile but by installperl;
271 # mentioned here so that metaconfig picks these up
275 case "${osname}:${osvers}" in
277 $spitshell >>Makefile <<EOF
279 # Your locales are broken (osname $osname, osvers $osvers)
280 # and to avoid the numerous
281 # perl: warning: Setting locale failed.
282 # warnings during the build process we reset the locale variables.
291 ## In the following dollars and backticks do not need the extra backslash.
292 $spitshell >>Makefile <<'!NO!SUBS!'
294 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
296 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
298 private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
300 # Files to be built with variable substitution before miniperl
302 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
303 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
305 shextract = Makefile cflags config.h makeaperl makedepend \
306 makedir myconfig writemain pod/Makefile
308 # Files to be built with variable substitution after miniperl is
309 # available. Dependencies handled manually below (for now).
311 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
312 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
314 # lib/lib.pm is not listed here because it has a rule of its own.
315 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
316 pod/pod2usage pod/podchecker pod/podselect
318 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
320 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
321 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
322 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
323 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
324 h5 = utf8.h warnings.h
325 h = $(h1) $(h2) $(h3) $(h4) $(h5)
327 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
328 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
329 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
330 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
332 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
334 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)
335 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)
336 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)
338 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
343 $(CCCMD) $(PLDLFLAGS) $*.c
346 $(CCCMDSRC) -E $*.c > $*.i
351 all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
353 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
355 .PHONY: all compile translators utilities
358 echo "testing compilation" > testcompile;
359 cd utils; $(MAKE) compile;
360 cd x2p; $(MAKE) compile;
361 cd pod; $(MAKE) compile;
363 translators: miniperl$(EXE_EXT) lib/Config.pm FORCE
364 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
366 utilities: miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
367 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
370 # This is now done by installman only if you actually want the man pages.
371 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
373 # Phony target to force checking subdirectories.
374 # Apparently some makes require an action for the FORCE target.
379 $spitshell >>Makefile <<!GROK!THIS!
381 # We do a copy of the op.c instead of a symlink because gcc gets huffy
382 # if we have a symlink forest to another disk (it complains about too many
383 # levels of symbolic links, even if we have only two)
385 opmini\$(OBJ_EXT): op.c config.h
387 \$(CPS) op.c opmini.c
388 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
392 $spitshell >>Makefile <<'!NO!SUBS!'
393 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
394 $(CCCMD) $(PLDLFLAGS) $*.c
396 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
397 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
398 sh mv-if-diff writemain.tmp perlmain.c
403 ;; # Let cygwin/Makefile.SHs do its work.
405 $spitshell >>Makefile <<'!NO!SUBS!'
406 perlmain$(OBJ_EXT): perlmain.c
407 $(CCCMD) $(PLDLFLAGS) $*.c
412 $spitshell >>Makefile <<'!NO!SUBS!'
413 # The file ext.libs is a list of libraries that must be linked in
414 # for static extensions, e.g. -lm -lgdbm, etc. The individual
415 # static extension Makefile's add to it.
416 ext.libs: $(static_ext)
417 -@test -f ext.libs || touch ext.libs
421 # How to build libperl. This is still rather convoluted.
422 # Load up custom Makefile.SH fragment for shared loading and executables:
425 Makefile_s="$osname/Makefile.SHs"
431 $spitshell >>Makefile <<!GROK!THIS!
433 # In AIX we need to change this for building Perl itself from
434 # its earlier definition (which is for building external
435 # extensions *after* Perl has been built and installed)
436 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
439 case "$useshrplib" in
441 $spitshell >>Makefile <<'!NO!SUBS!'
443 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
444 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
446 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
447 $(RMS) $(LIBPERL_NONSHR)
448 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
450 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
451 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
452 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
454 MINIPERLEXP = $(MINIPERL_NONSHR)
456 LIBPERLEXPORT = perl.exp
462 $spitshell >>Makefile <<'!NO!SUBS!'
463 MINIPERLEXP = miniperl$(EXE_EXT)
465 PERLEXPORT = perl.exp
470 $spitshell >>Makefile <<'!NO!SUBS!'
471 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
472 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp
473 sh mv-if-diff perl.exp.tmp perl.exp
478 $spitshell >>Makefile <<'!NO!SUBS!'
479 MINIPERLEXP = miniperl
481 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
482 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp
483 sh mv-if-diff perl.exp.tmp perl5.def
489 if test -r $Makefile_s ; then
491 $spitshell >>Makefile <<!GROK!THIS!
493 Makefile: $Makefile_s
496 $spitshell >>Makefile <<'!NO!SUBS!'
497 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
499 case "$useshrplib" in
501 $spitshell >>Makefile <<'!NO!SUBS!'
502 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs)
506 $spitshell >>Makefile <<'!NO!SUBS!'
507 rm -f libperl$(OBJ_EXT)
508 mv $@ libperl$(OBJ_EXT)
509 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
515 $spitshell >>Makefile <<'!NO!SUBS!'
517 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
518 @$(ranlib) $(LIBPERL)
522 $spitshell >>Makefile <<'!NO!SUBS!'
524 # How to build executables.
526 # The $& notation tells Sequent machines that it can do a parallel make,
527 # and is harmless otherwise.
528 # The miniperl -w -MExporter line is a basic cheap test to catch errors
529 # before make goes on to run preplibrary and then MakeMaker on extensions.
530 # This is very handy because later errors are often caused by miniperl
531 # build problems but that's not obvious to the novice.
532 # The Module used here must not depend on Config or any extensions.
536 case "${osname}${osvers}" in
538 $spitshell >>Makefile <<'!NO!SUBS!'
539 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
540 $(CC) -o miniperl $(CLDFLAGS) \
541 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
542 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
543 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
547 $spitshell >>Makefile <<'!NO!SUBS!'
548 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
549 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
550 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
551 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
557 *) case "$ldflags" in
558 *"-flat_namespace"*) ;;
559 *) # to allow opmini.o to override stuff in libperl.dylib
560 $spitshell >>Makefile <<!NO!SUBS!
561 NAMESPACEFLAGS = -force_flat_namespace
567 $spitshell >>Makefile <<'!NO!SUBS!'
568 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
570 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \
571 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
572 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
576 $spitshell >>Makefile <<'!NO!SUBS!'
577 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
579 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
580 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
581 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
586 $spitshell >>Makefile <<'!NO!SUBS!'
588 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
590 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
592 # Purify/Quantify Perls.
594 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
595 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
597 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
598 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
600 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
601 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
603 # Valgrind perl (currently Linux only)
605 perl.valgrind.config: config.sh
606 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
607 @$(MAKE) perl.config.dashg
608 @echo "Checking usemymalloc='n' in config.sh..."
609 @grep "^usemymalloc=" config.sh
610 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
611 @echo "And of course you have to have valgrind..."
612 valgrind ./perl -e 1 2>/dev/null || exit 1
614 # Third Degree Perl (Tru64 only)
617 @echo "Checking optimize='-g' in config.sh..."
618 @grep "^optimize=" config.sh
619 @grep "^optimize='-g'" config.sh >/dev/null || exit 1
621 perl.third.config: config.sh
622 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
623 @$(MAKE) perl.config.dashg
624 @echo "Checking usemymalloc='n' in config.sh..."
625 @grep "^usemymalloc=" config.sh
626 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
628 perl.third: /usr/bin/atom perl.third.config perl
629 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
630 @echo "Now you may run perl.third and then study perl.3log."
632 # Pixie Perls (Tru64 and IRIX only)
634 perl.pixie.config: config.sh
635 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
636 @$(MAKE) perl.config.dashg
638 perl.pixie.atom: /usr/bin/atom perl
639 atom -tool pixie -L. -all -toolargs="-quiet" perl
641 perl.pixie.irix: perl
644 perl.pixie: /usr/bin/pixie perl.pixie.config perl
645 if test -x /usr/bin/atom; then \
646 $(MAKE) perl.pixie.atom; \
648 $(MAKE) perl.pixie.irix; \
650 @echo "Now you may run perl.pixie and then run pixie."
655 @echo "Checking optimize='-pg' in config.sh..."
656 @grep "^optimize=" config.sh
657 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
659 perl.gprof.config: config.sh
660 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
661 @$(MAKE) perl.config.dashpg
663 perl.gprof: /usr/bin/gprof perl.gprof.config
665 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
666 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
671 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
672 @echo "Checking gccversion in config.sh..."
673 @grep "^gccversion=" config.sh
674 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
675 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
676 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
677 @grep "^ccflags=" config.sh
678 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
680 perl.gcov: perl.config.gcov
682 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
683 @echo "Now you may run perl.gcov and then run gcov some.c."
685 # Microperl. This is just a convenience thing if one happens to
686 # build also the full Perl and therefore the real big Makefile:
687 # usually one should manually explicitly issue the below command.
691 $(MAKE) -f Makefile.micro
693 # This version, if specified in Configure, does ONLY those scripts which need
694 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
695 # checks as well as the special code to validate that the script in question
696 # has been invoked correctly.
698 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
699 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
705 $spitshell >>Makefile <<'!NO!SUBS!'
707 sperl$(OBJ_EXT): perl.c $(h)
709 $(LNS) perl.c sperl.c
710 $(CCCMD) -DIAMSUID sperl.c
713 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
714 # test -d lib/auto || mkdir lib/auto
715 # We need to autosplit in two steps because VOS can't handle so many args
718 preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
719 @sh ./makedir lib/auto
720 @echo " AutoSplitting perl library"
721 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
722 autosplit_lib_modules(@ARGV)' lib/*.pm
723 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
724 autosplit_lib_modules(@ARGV)' lib/*/*.pm
727 # Take care to avoid modifying lib/Config.pm without reason
728 # (If trying to create a new port and having problems with the configpm script,
729 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
730 lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
731 $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
732 sh mv-if-diff configpm.tmp $@
734 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
735 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
736 sh mv-if-diff minimod.tmp $@
737 -touch lib/ExtUtils/Miniperl.pm
739 lib/re.pm: ext/re/re.pm
740 cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
742 $(plextract): miniperl$(EXE_EXT) lib/Config.pm x2p/s2p
744 $(LDLIBPTH) ./miniperl -Ilib $@.PL
746 x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL
747 cd x2p; $(LDLIBPTH) $(MAKE) s2p
749 lib/lib.pm: miniperl$(EXE_EXT) lib/Config.pm
751 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
753 extra.pods: miniperl$(EXE_EXT)
754 -@test -f extra.pods && rm -f `cat extra.pods`
756 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
757 nx=`echo $$x | sed -e "s/README\.//"`; \
758 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
759 echo "pod/perl"$$nx".pod" >> extra.pods ; \
761 -@rm -f pod/perlvms.pod
762 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
763 -@rm -f pod/perldelta.pod
764 -@test -f pod/perl592delta.pod && cd pod && $(LNS) perl592delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods
766 extras.make: perl$(EXE_EXT)
767 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
769 extras.test: perl$(EXE_EXT)
770 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
772 extras.install: perl$(EXE_EXT)
773 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
775 .PHONY: install install-strip install-all install-verbose install-silent \
776 no-install install.perl install.man install.html
778 META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
779 $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
782 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
785 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
788 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
791 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
794 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
796 # Set this to an empty string to avoid an attempt of rebuild before install
797 INSTALL_DEPENDENCE = all
799 install.perl: $(INSTALL_DEPENDENCE) installperl
800 if [ -n "$(COMPILE)" ]; \
802 cd utils; $(MAKE) compile; \
803 cd ../x2p; $(MAKE) compile; \
804 cd ../pod; $(MAKE) compile; \
807 $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
808 $(MAKE) extras.install
810 install.man: all installman
811 $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
813 # XXX Experimental. Hardwired values, but useful for testing.
814 # Eventually Configure could ask for some of these values.
815 install.html: all installhtml
816 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
817 $(LDLIBPTH) ./perl installhtml \
818 --podroot=. --podpath=. --recurse \
819 --htmldir=$(privlib)/html \
820 --htmlroot=$(privlib)/html \
821 --splithead=pod/perlipc \
822 --splititem=pod/perlfunc \
823 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
827 # I now supply perly.c with the kits, so the following section is
828 # used only if you force bison to run by saying
830 # You normally shouldn't remake perly.[ch].
835 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
837 # this outputs perly.act and perly.tab
841 # We don't want to regenerate perly.c and perly.h, but they might
842 # appear out-of-date after a patch is applied or a new distribution is
850 # No compat3.sym here since and including the 5.004_50.
851 # No interp.sym since 5.005_03.
852 SYM = global.sym globvar.sym perlio.sym pp.sym
854 SYMH = perlvars.h intrpvar.h thrdvar.h
858 # The following files are generated automatically
859 # autodoc.pl: pod/perlapi.pod pod/perlintern.pod
860 # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
862 # embed.pl: proto.h embed.h embedvar.h global.sym
863 # perlapi.h perlapi.c
864 # [* embed.pl needs pp.sym generated by opcode.pl! *]
865 # keywords.pl: keywords.h
866 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
867 # regcomp.pl: regnodes.h
868 # warnings.pl: warnings.h lib/warnings.pm
869 # The correct versions should be already supplied with the perl kit,
870 # in case you don't have perl available.
871 # To force them to be regenerated, run
873 # with your existing copy of perl
874 # (make regen_headers is kept for backwards compatibility)
876 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
877 embed.h embedvar.h global.sym \
878 pod/perlintern.pod pod/perlapi.pod \
879 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
880 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
881 warnings.h lib/warnings.pm
883 .PHONY: regen_headers regen_pods regen_all
885 regen regen_headers: FORCE
889 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
891 regen_all: regen regen_pods
893 .PHONY: manisort manicheck
896 LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
897 LC_ALL=C sort -fdo MANIFEST MANIFEST)
900 perl Porting/manicheck
903 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
904 # automatically get built. There should ordinarily be no need to change
905 # any of this part of makefile.
907 # The dummy dependency is a place holder in case $(dynamic_ext) or
908 # $(static_ext) is empty.
910 # DynaLoader may be needed for extensions that use Makefile.PL.
912 $(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
913 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
915 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
916 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
918 s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
919 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
921 n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
922 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
924 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
925 realclean _realcleaner clobber _clobber \
926 distclean veryclean _verycleaner
930 realclean: _realcleaner _mopup
931 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
934 -@rm -f Cross/run-* Cross/to-* Cross/from-*
935 rm -f config.sh cppstdin Policy.sh extras.lst
937 clobber: _realcleaner _mopup _clobber
941 # Like distclean but also removes emacs backups and *.orig.
942 veryclean: _verycleaner _mopup _clobber
943 -@rm -f Obsolete Wanted
945 # Do not 'make _mopup' directly.
947 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
949 -@test -f extra.pods && rm -f `cat extra.pods`
950 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
951 -rm -f perl.exp ext.libs extra.pods opmini.o
952 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
953 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
954 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
955 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
956 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
957 -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
958 -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
959 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
961 # Do not 'make _tidy' directly.
963 -cd pod; $(LDLIBPTH) $(MAKE) clean
964 -cd utils; $(LDLIBPTH) $(MAKE) clean
965 -cd x2p; $(LDLIBPTH) $(MAKE) clean
966 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
967 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
969 rm -f testcompile compilelog
972 -cd os2; rm -f Makefile
973 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
974 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
975 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
976 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
977 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
980 # Some systems do not support "?", so keep these files separate.
982 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
983 rm -f core *perl.core t/core t/*perl.core
984 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
985 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
986 rm -rf $(addedbyconf)
987 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
988 rm -f $(private) lib/Config.pod
990 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
991 rm -f h2ph.man pstruct
994 rm -f testcompile compilelog
995 -rmdir lib/B lib/Data lib/Digest
997 -rmdir lib/Filter/Util lib/IO/Socket lib/IO
998 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
999 -rmdir lib/threads lib/XS
1002 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1003 @$(LDLIBPTH) $(MAKE) _cleaner2
1006 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1007 @$(LDLIBPTH) $(MAKE) _cleaner2
1008 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1010 # The following lint has practically everything turned on. Unfortunately,
1011 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
1012 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
1017 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
1019 # Need to unset during recursion to go out of loop.
1020 # The README below ensures that the dependency list is never empty and
1021 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1023 MAKEDEPEND = Makefile makedepend
1025 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1026 $(MAKE) depend MAKEDEPEND=
1028 config.h: config_h.SH config.sh
1029 $(SHELL) config_h.SH
1031 # When done, touch perlmain.c so that it doesn't get remade each time.
1034 sh ./makedepend MAKE=$(MAKE)
1035 - test -s perlmain.c && touch perlmain.c
1036 cd x2p; $(MAKE) depend
1038 # Cannot postpone this until $firstmakefile is ready ;-)
1039 makedepend: makedepend.SH config.sh
1042 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1043 test_tty test-tty _test_tty test_notty test-notty _test_notty \
1044 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1045 test.third check.third utest.third ucheck.third test_notty.third \
1046 test.deparse test_notty.deparse test_harness test_harness_notty \
1047 test.bytecompile minitest coretest test.taintwarn
1049 # Cannot delegate rebuilding of t/perl to make
1050 # to allow interlaced test and minitest
1055 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1057 # Architecture-neutral stuff:
1059 test_prep_pre: preplibrary utilities $(nonxs_ext)
1061 test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1062 PERL=./perl $(MAKE) _test_prep
1065 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1068 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
1070 # The second branch is for testing without a tty or controlling terminal,
1073 if (true </dev/tty) >/dev/null 2>&1; then \
1074 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
1076 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1078 @echo "Ran tests" > t/rantests
1080 test check: test_prep
1081 PERL=./perl $(MAKE) _test
1084 PERL=./perl $(MAKE) _test_tty
1086 test_notty: test_prep
1087 PERL=./perl $(MAKE) _test_notty
1089 utest ucheck test.utf8 check.utf8: test_prep
1090 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1093 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1095 test-prep: test_prep
1099 test-notty: test_notty
1103 test.torture torturetest: test_prep
1104 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1106 # Targets for valgrind testing:
1108 test_prep.valgrind: test_prep perl.valgrind
1109 PERL=./perl $(MAKE) _test_prep
1111 test.valgrind check.valgrind: test_prep perl.valgrind.config
1112 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test
1114 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind
1115 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1117 test_notty.valgrind: test_prep.valgrind perl.valgrind
1118 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1120 # Targets for Third Degree testing.
1122 test_prep.third: test_prep perl.third
1123 PERL=./perl.third $(MAKE) _test_prep
1125 test.third check.third: test_prep.third perl.third
1126 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1128 utest.third ucheck.third: test_prep.third perl.third
1129 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1131 test_notty.third: test_prep.third perl.third
1132 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1134 # Targets for Bytecode/ByteLoader testing.
1136 test.bytecompile: test_prep
1137 PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test
1139 # Targets for Deparse testing.
1141 test.deparse: test_prep
1142 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1144 test_notty.deparse: test_prep
1145 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1147 # Targets to run the test suite with -t
1149 test.taintwarn: test_prep
1150 PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1152 # Can't depend on lib/Config.pm because that might be where miniperl
1154 minitest: miniperl$(EXE_EXT) lib/re.pm
1155 -@test -f lib/lib.pm && test -f lib/Config.pm || \
1156 $(MAKE) lib/Config.pm lib/lib.pm
1158 @echo "You may see some irrelevant test failures if you have been unable"
1159 @echo "to build lib/Config.pm or lib/lib.pm."
1161 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1162 && $(LDLIBPTH) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1166 test_harness: test_prep
1167 PERL=./perl $(MAKE) TESTFILE=harness _test
1169 test_harness_notty: test_prep
1170 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1172 # Handy way to run perlbug -ok without having to install and run the
1173 # installed perlbug. We don't re-run the tests here - we trust the user.
1174 # Please *don't* use this unless all tests pass.
1175 # If you want to report test failures, use "make nok" instead.
1177 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1180 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1183 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1186 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1188 okfilenack: utilities
1189 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1192 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1195 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1198 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1200 nokfilenack: utilities
1201 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1203 .PHONY: clist hlist shlist pllist
1206 echo $(c) | tr ' ' $(TRNL) >.clist
1209 echo $(h) | tr ' ' $(TRNL) >.hlist
1212 echo $(sh) | tr ' ' $(TRNL) >.shlist
1215 echo $(pl) | tr ' ' $(TRNL) >.pllist
1217 Makefile: Makefile.SH ./config.sh
1218 $(SHELL) Makefile.SH
1222 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1225 elc: emacs/cperl-mode.elc
1227 emacs/cperl-mode.elc: emacs/cperl-mode.el
1228 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1230 .PHONY: etags ctags tags
1234 TAGS: emacs/cperl-mode.elc
1239 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1240 # This may also fail if . is in the head of the path, since perl will
1243 perl emacs/e2ctags.pl TAGS > tags
1245 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1246 # If this runs make out of memory, delete /usr/include lines.
1253 $ln Makefile ../Makefile
1256 $rm -f $firstmakefile
1258 # Now do any special processing required before building.
1263 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1268 rm -f y.tab.c y.tab.h
1271 # we are using two different yaccs in BS2000 Posix!
1272 byacc a2p.y >/dev/null 2>&1
1275 yacc a2p.y >/dev/null 2>&1
1278 if cmp -s y.tab.c a2p.c
1282 echo "a2p.y -> a2p.c" >&2
1285 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1286 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1287 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1290 # In case somebody yacc -d:ed the a2p.y.
1293 if cmp -s y.tab.h a2p.h
1297 echo "a2p.h -> a2p.h" >&2
1306 # Do nothing in VM/ESA.
1309 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1313 '') echo "No parser files were regenerated. That's okay." >&2 ;;