4 if test -f config.sh; then TOP=.;
5 elif test -f ../config.sh; then TOP=..;
6 elif test -f ../../config.sh; then TOP=../..;
7 elif test -f ../../../config.sh; then TOP=../../..;
8 elif test -f ../../../../config.sh; then TOP=../../../..;
10 echo "Can't find config.sh."; exit 1
15 : This forces SH files to create target in same directory as SH file.
16 : This is so that make depend always knows where to find SH derivatives.
18 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
22 *define*) suidperl='suidperl' ;;
26 linklibperl='$(LIBPERL)'
27 shrpldflags='$(LDDLFLAGS)'
31 # Prefix all runs of 'miniperl' and 'perl' with
32 # $ldlibpth so that ./perl finds *this* shared libperl.
33 ldlibpth="LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH"
35 pldlflags="$cccdlflags"
36 case "${osname}${osvers}" in
39 lddlflags="-dynamic -undefined warning -framework System \
40 -compatibility_version 1 -current_version $patchlevel \
41 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
49 netbsd*|freebsd[234]*|openbsd*)
50 linklibperl="-L. -lperl"
53 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
55 3*) shrpldflags="$shrpldflags -e _nostart"
57 *) shrpldflags="$shrpldflags -b noentry"
60 shrpldflags="$shrpldflags $ldflags $libs $cryptlib"
61 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
64 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
67 case "$ldlibpthname" in
75 eval "ldlibpth=\"$ldlibpthname=`pwd`/Perl:\$$ldlibpthname\""
78 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
88 : Prepare dependency lists for Makefile.
90 for f in $dynamic_ext; do
91 : the dependency named here will never exist
92 base=`echo "$f" | sed 's/.*\///'`
93 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
97 for f in $static_ext; do
98 base=`echo "$f" | sed 's/.*\///'`
99 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
103 for f in $nonxs_ext; do
104 base=`echo "$f" | sed 's/.*\///'`
105 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
108 echo "Extracting Makefile (with variable substitutions)"
109 $spitshell >Makefile <<!GROK!THIS!
111 # This file is derived from Makefile.SH. Any changes made here will
112 # be lost the next time you run Configure.
113 # Makefile is used to generate $firstmakefile. The only difference
114 # is that $firstmakefile has the dependencies filled in at the end.
117 # I now supply perly.c with the kits, so don't remake perly.c without byacc
126 LARGE = $large $split
127 mallocsrc = $mallocsrc
128 mallocobj = $mallocobj
133 # The following are mentioned only to make metaconfig include the
134 # appropriate questions in Configure. If you want to change these,
135 # edit config.sh instead, or specify --man1dir=/wherever on
136 # installman commandline.
138 scriptdir = $scriptdir
139 shrpdir = $archlibexp/CORE
140 privlib = $installprivlib
146 # The following are used to build and install shared libraries for
148 LDDLFLAGS = $lddlflags
149 SHRPLDFLAGS = $shrpldflags
150 CCDLFLAGS = $ccdlflags
152 PLDLFLAGS = $pldlflags
154 LLIBPERL= $linklibperl
157 # The following is used to include the current directory in
158 # the dynamic loader path you are building a shared libperl.
161 dynamic_ext = $dynamic_list
162 static_ext = $static_list
163 nonxs_ext = $nonxs_list
164 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
165 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
167 libs = $libs $cryptlib
169 public = perl $suidperl utilities translators
171 shellflags = $shellflags
173 # This is set to MAKE=$make if your $make command doesn't
177 # These variables may need to be manually set for non-Unix systems.
184 FIRSTMAKEFILE = $firstmakefile
186 # Any special object files needed by this architecture, e.g. os2/os2.obj
189 .SUFFIXES: .c \$(OBJ_EXT)
194 # how to tr(anslate) newlines
197 # not used by Makefile but by installperl;
198 # mentioned here so that metaconfig picks it up
199 INSTALL_USR_BIN_PERL = $installusrbinperl
203 ## In the following dollars and backticks do not need the extra backslash.
204 $spitshell >>Makefile <<'!NO!SUBS!'
206 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
208 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
210 # Files to be built with variable substitution before miniperl
212 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
213 makedir.SH myconfig.SH writemain.SH
215 shextract = Makefile cflags config.h makeaperl makedepend \
216 makedir myconfig writemain
218 # Files to be built with variable substitution after miniperl is
219 # available. Dependencies handled manually below (for now).
221 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
222 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
224 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
225 pod/pod2usage pod/podchecker pod/podselect
227 addedbyconf = UU $(shextract) $(plextract) pstruct
229 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
230 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
231 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
232 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
233 h5 = utf8.h warnings.h
234 h = $(h1) $(h2) $(h3) $(h4) $(h5)
236 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
237 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
238 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
239 c4 = globals.c perlio.c
241 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
243 obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT)
244 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)
245 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)
247 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
249 # Once perl has been Configure'd and built ok you build different
250 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
251 # make clean; make LIBPERL=libperl<type>.a
252 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
253 # See cflags to understand how this works.
255 # This mechanism is getting clunky and might not even work any more.
256 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
262 $(CCCMD) $(PLDLFLAGS) $*.c
264 all: $(FIRSTMAKEFILE) miniperl extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext)
266 @echo " Everything is up to date. 'make test' to run test suite."
269 echo "testing compilation" > testcompile;
270 cd utils; $(MAKE) compile;
271 cd x2p; $(MAKE) compile;
272 cd pod; $(MAKE) compile;
274 translators: miniperl lib/Config.pm FORCE
275 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
277 utilities: miniperl lib/Config.pm $(plextract) FORCE
278 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
281 # This is now done by installman only if you actually want the man pages.
282 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
284 # Phony target to force checking subdirectories.
285 # Apparently some makes require an action for the FORCE target.
289 opmini$(OBJ_EXT): op.c
290 $(CCCMD) $(PLDLFLAGS) -DPERL_EXTERNAL_GLOB -o opmini$(OBJ_EXT) op.c
292 miniperlmain$(OBJ_EXT): miniperlmain.c
293 $(CCCMD) $(PLDLFLAGS) $*.c
295 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
296 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
297 sh mv-if-diff writemain.tmp perlmain.c
299 perlmain$(OBJ_EXT): perlmain.c
300 $(CCCMD) $(PLDLFLAGS) $*.c
302 # The file ext.libs is a list of libraries that must be linked in
303 # for static extensions, e.g. -lm -lgdbm, etc. The individual
304 # static extension Makefile's add to it.
305 ext.libs: $(static_ext)
306 -@test -f ext.libs || touch ext.libs
310 # How to build libperl. This is still rather convoluted.
311 # Load up custom Makefile.SH fragment for shared loading and executables:
314 Makefile_s="cygwin/Makefile.SHs"
317 Makefile_s="$osname/Makefile.SHs"
323 $spitshell >>Makefile <<!GROK!THIS!
325 # In AIX we need to change this for building Perl itself from
326 # its earlier definition (which is for building external
327 # extensions *after* Perl has been built and installed)
328 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
331 case "$useshrplib" in
333 $spitshell >>Makefile <<'!NO!SUBS!'
335 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
336 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
338 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
339 $(RMS) $(LIBPERL_NONSHR)
340 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
342 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
343 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
344 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
346 MINIPERLEXP = $(MINIPERL_NONSHR)
348 LIBPERLEXPORT = perl.exp
354 $spitshell >>Makefile <<'!NO!SUBS!'
355 MINIPERLEXP = miniperl$(EXE_EXT)
357 PERLEXPORT = perl.exp
362 $spitshell >>Makefile <<'!NO!SUBS!'
363 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
364 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
365 sh mv-if-diff perl.exp.tmp perl.exp
370 $spitshell >>Makefile <<'!NO!SUBS!'
371 MINIPERLEXP = miniperl
373 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
374 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
375 sh mv-if-diff perl.exp.tmp perl5.def
381 if test -r $Makefile_s ; then
383 $spitshell >>Makefile <<!GROK!THIS!
385 Makefile: $Makefile_s
388 $spitshell >>Makefile <<'!NO!SUBS!'
389 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
391 case "$useshrplib" in
393 $spitshell >>Makefile <<'!NO!SUBS!'
394 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
398 $spitshell >>Makefile <<'!NO!SUBS!'
399 rm -f libperl$(OBJ_EXT)
400 mv $@ libperl$(OBJ_EXT)
401 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
407 $spitshell >>Makefile <<'!NO!SUBS!'
409 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
410 @$(ranlib) $(LIBPERL)
414 $spitshell >>Makefile <<'!NO!SUBS!'
416 # How to build executables.
418 # The $& notation tells Sequent machines that it can do a parallel make,
419 # and is harmless otherwise.
420 # The miniperl -w -MExporter line is a basic cheap test to catch errors
421 # before make goes on to run preplibrary and then MakeMaker on extensions.
422 # This is very handy because later errors are often caused by miniperl
423 # build problems but that's not obvious to the novice.
424 # The Module used here must not depend on Config or any extensions.
428 case "${osname}${osvers}" in
430 $spitshell >>Makefile <<'!NO!SUBS!'
431 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
432 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
433 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
434 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
438 $spitshell >>Makefile <<'!NO!SUBS!'
439 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
440 $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl \
441 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
442 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
447 $spitshell >>Makefile <<'!NO!SUBS!'
449 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
450 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
452 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
453 $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
455 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
456 $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
458 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
459 $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
461 # This version, if specified in Configure, does ONLY those scripts which need
462 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
463 # checks as well as the special code to validate that the script in question
464 # has been invoked correctly.
466 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
467 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
473 $spitshell >>Makefile <<'!NO!SUBS!'
475 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
477 $(LNS) perl.c sperl.c
478 $(CCCMD) -DIAMSUID sperl.c
481 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
482 # test -d lib/auto || mkdir lib/auto
484 preplibrary: miniperl lib/Config.pm
485 @sh ./makedir lib/auto
486 @echo " AutoSplitting perl library"
487 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
488 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
490 # Take care to avoid modifying lib/Config.pm without reason
491 # (If trying to create a new port and having problems with the configpm script,
492 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
493 lib/Config.pm: config.sh miniperl configpm lib/re.pm
494 $(LDLIBPTH) ./miniperl configpm configpm.tmp
495 sh mv-if-diff configpm.tmp $@
497 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
498 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
499 sh mv-if-diff minimod.tmp $@
501 lib/re.pm: ext/re/re.pm
503 cat ext/re/re.pm > $@
505 $(plextract): miniperl lib/Config.pm
506 $(LDLIBPTH) ./miniperl -Ilib $@.PL
509 -@test -f extra.pods && rm -f `cat extra.pods`
511 -@for x in `grep -l '^=[a-z]' README.*` ; do \
512 nx=`echo $$x | sed -e "s/README\.//"`; \
513 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
514 echo "pod/perl"$$nx".pod" >> extra.pods ; \
517 install: all install.perl install.man
519 install.perl: all installperl
520 if [ -n "$(COMPILE)" ]; \
522 cd utils; $(MAKE) compile; \
523 cd ../x2p; $(MAKE) compile; \
524 cd ../pod; $(MAKE) compile; \
527 $(LDLIBPTH) ./perl installperl
529 install.man: all installman
530 $(LDLIBPTH) ./perl installman
532 # XXX Experimental. Hardwired values, but useful for testing.
533 # Eventually Configure could ask for some of these values.
534 install.html: all installhtml
535 $(LDLIBPTH) ./perl installhtml \
536 --podroot=. --podpath=. --recurse \
537 --htmldir=$(privlib)/html \
538 --htmlroot=$(privlib)/html \
539 --splithead=pod/perlipc \
540 --splititem=pod/perlfunc \
541 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
545 # I now supply perly.c with the kits, so the following section is
546 # used only if you force byacc to run by saying
548 # Since we patch up the byacc output, the perly.fixer script needs
549 # to run with precisely the same version of byacc as I use. You
550 # normally shouldn't remake perly.[ch].
555 sh $(shellflags) ./perly.fixer y.tab.c perly.c
556 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
557 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
558 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
559 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
560 chmod 664 vms/perly_c.vms vms/perly_h.vms
561 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
563 # We don't want to regenerate perly.c and perly.h, but they might
564 # appear out-of-date after a patch is applied or a new distribution is
572 # No compat3.sym here since and including the 5.004_50.
573 # No interp.sym since 5.005_03.
574 SYM = global.sym globvar.sym perlio.sym pp.sym
576 SYMH = perlvars.h intrpvar.h thrdvar.h
580 # The following files are generated automatically
581 # keywords.h: keywords.pl
582 # opcode.h: opcode.pl
583 # pp_proto.h: opcode.pl
585 # embed.h: embed.pl [* needs pp.sym generated by opcode.pl! *]
586 # embedvar.h: embed.pl [* needs pp.sym generated by opcode.pl! *]
587 # ext/ByteLoader/byterun.h: bytecode.pl
588 # ext/ByteLoader/byterun.c: bytecode.pl
589 # ext/B/Asmdata.pm: bytecode.pl
590 # global.sym: embed.pl
591 # regnodes.h: regcomp.pl
592 # warnings.h lib/warnings.pm: warnings.pl
593 # The correct versions should be already supplied with the perl kit,
594 # in case you don't have perl available.
595 # To force them to run, type
598 $(CHMOD_W) proto.h warnings.h lib/warnings.pm
607 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
608 # automatically get built. There should ordinarily be no need to change
609 # any of this part of makefile.
611 # The dummy dependency is a place holder in case $(dynamic_ext) or
612 # $(static_ext) is empty.
614 # DynaLoader may be needed for extensions that use Makefile.PL.
616 $(DYNALOADER): miniperl preplibrary FORCE
617 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
619 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
620 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
622 s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
623 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
625 n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE
626 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
630 realclean: _cleaner _mopup
631 @echo "Note that make realclean does not delete config.sh or Policy.sh"
633 clobber: _cleaner _mopup
634 rm -f config.sh cppstdin Policy.sh
638 # Do not 'make _mopup' directly.
640 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
641 -@test -f extra.pods && rm -f `cat extra.pods`
642 -rm -f perl.exp ext.libs extra.pods
643 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
644 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
645 rm -f perl suidperl miniperl $(LIBPERL)
647 # Do not 'make _tidy' directly.
649 -cd pod; $(LDLIBPTH) $(MAKE) clean
650 -cd utils; $(LDLIBPTH) $(MAKE) clean
651 -cd x2p; $(LDLIBPTH) $(MAKE) clean
652 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
653 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
655 rm -f testcompile compilelog
657 # Do not 'make _cleaner' directly.
659 -cd os2; rm -f Makefile
660 -cd pod; $(LDLIBPTH) $(MAKE) realclean
661 -cd utils; $(LDLIBPTH) $(MAKE) realclean
662 -cd x2p; $(LDLIBPTH) $(MAKE) realclean
663 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
664 $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
666 rm -f *.orig */*.orig *~ */*~ core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/tmp* t/c t/perl so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
667 rm -rf $(addedbyconf)
668 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
671 rm -f lib/.exists lib/*/.exists
672 rm -f h2ph.man pstruct
674 rm -f testcompile compilelog
675 -rmdir lib/B lib/Data lib/IO/Socket lib/IO
677 # The following lint has practically everything turned on. Unfortunately,
678 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
679 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
683 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
685 # Need to unset during recursion to go out of loop.
686 # The README below ensures that the dependency list is never empty and
687 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
689 MAKEDEPEND = Makefile makedepend
691 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
692 $(MAKE) depend MAKEDEPEND=
694 config.h: config_h.SH config.sh
697 # When done, touch perlmain.c so that it doesn't get remade each time.
699 sh ./makedepend MAKE=$(MAKE)
700 - test -s perlmain.c && touch perlmain.c
701 cd x2p; $(MAKE) depend
703 # Cannot postpone this until $firstmakefile is ready ;-)
704 makedepend: makedepend.SH config.sh
707 # Cannot delegate rebuilding of t/perl to make to allow interlaced
709 test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
710 cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
712 # Second branch is for testing without a tty or controling terminal.
714 test check: test-prep
715 if (true </dev/tty) >/dev/null 2>&1; then \
716 cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
718 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
721 utest ucheck: test-prep
722 if (true </dev/tty) >/dev/null 2>&1; then \
723 cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
725 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
728 # For testing without a tty or controling terminal. See t/op/stat.t
729 test-notty: test-prep
730 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
732 # Can't depend on lib/Config.pm because that might be where miniperl
734 minitest: miniperl lib/re.pm
735 @echo "You may see some irrelevant test failures if you have been unable"
736 @echo "to build lib/Config.pm."
737 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
738 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
740 # Handy way to run perlbug -ok without having to install and run the
741 # installed perlbug. We don't re-run the tests here - we trust the user.
742 # Please *don't* use this unless all tests pass.
743 # If you want to report test failures, use "make nok" instead.
745 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
748 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
751 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
754 echo $(c) | tr ' ' $(TRNL) >.clist
757 echo $(h) | tr ' ' $(TRNL) >.hlist
760 echo $(sh) | tr ' ' $(TRNL) >.shlist
763 echo $(pl) | tr ' ' $(TRNL) >.pllist
765 Makefile: Makefile.SH ./config.sh
769 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
771 elc: emacs/cperl-mode.elc
773 emacs/cperl-mode.elc: emacs/cperl-mode.el
774 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
778 TAGS: emacs/cperl-mode.elc
783 # Let's hope make will not go into an infinite loop on case-unsensitive systems
784 # This may also fail if . is in the head of the path, since perl will
787 perl emacs/e2ctags.pl TAGS > tags
789 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
790 # If this runs make out of memory, delete /usr/include lines.
797 $ln Makefile ../Makefile
800 $rm -f $firstmakefile
802 # Now do any special processing required before building.
807 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
810 rm -f y.tab.c y.tab.h
811 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
812 yacc -d perly.y >/dev/null 2>&1
813 if cmp -s y.tab.c perly.c; then
816 echo "perly.y -> perly.c" >&2
817 mv -f y.tab.c perly.c
819 sed -e '/^#include "perl\.h"/a\
821 #define yydebug PL_yydebug\
822 #define yynerrs PL_yynerrs\
823 #define yyerrflag PL_yyerrflag\
824 #define yychar PL_yychar\
825 #define yyval PL_yyval\
826 #define yylval PL_yylval' \
827 -e '/YYSTYPE *yyval;/D' \
828 -e '/YYSTYPE *yylval;/D' \
829 -e '/int yychar,/,/yynerrs;/D' \
830 -e 's/int yydebug = 0;/yydebug = 0;/' \
831 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
832 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
833 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
836 if cmp -s y.tab.h perly.h; then
839 echo "perly.y -> perly.h" >&2
840 mv -f y.tab.h perly.h
845 rm -f y.tab.c y.tab.h
848 # we are using two different yaccs in BS2000 Posix!
849 byacc a2p.y >/dev/null 2>&1
852 yacc a2p.y >/dev/null 2>&1
855 if cmp -s y.tab.c a2p.c
859 echo "a2p.y -> a2p.c" >&2
862 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
863 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
866 # In case somebody yacc -d:ed the a2p.y.
869 if cmp -s y.tab.h a2p.h
873 echo "a2p.h -> a2p.h" >&2
882 # Do nothing in VM/ESA.
885 echo "'$osname' is an EBCDIC system I don't know that well." >&4
889 '') echo "No parser files were regenerated. That's okay." >&2 ;;