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 case "$LD_LIBRARY_PATH" in
35 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
37 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
40 pldlflags="$cccdlflags"
41 case "${osname}${osvers}" in
44 lddlflags="-dynamic -undefined warning -framework System \
45 -compatibility_version 1 -current_version $patchlevel \
46 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
49 shrpldflags="${ldflags} -dynamiclib \
50 -compatibility_version 1 \
52 ${api_version}.${api_subversion} \
53 -image_base 0x4be00000 \
54 -install_name \$(shrpdir)/\$@"
62 netbsd*|freebsd[234]*|openbsd*)
63 linklibperl="-L. -lperl"
66 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
68 3*) shrpldflags="$shrpldflags -e _nostart"
70 *) shrpldflags="$shrpldflags -b noentry"
73 shrpldflags="$shrpldflags $ldflags $libs $cryptlib"
74 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
77 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
80 case "$ldlibpthname" in
88 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
91 # Strip off any trailing :'s
92 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
100 : Prepare dependency lists for Makefile.
102 for f in $dynamic_ext; do
103 : the dependency named here will never exist
104 base=`echo "$f" | sed 's/.*\///'`
105 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
109 for f in $static_ext; do
110 base=`echo "$f" | sed 's/.*\///'`
111 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
115 for f in $nonxs_ext; do
116 base=`echo "$f" | sed 's/.*\///'`
117 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
120 echo "Extracting Makefile (with variable substitutions)"
121 $spitshell >Makefile <<!GROK!THIS!
123 # This file is derived from Makefile.SH. Any changes made here will
124 # be lost the next time you run Configure.
125 # Makefile is used to generate $firstmakefile. The only difference
126 # is that $firstmakefile has the dependencies filled in at the end.
129 # I now supply perly.c with the kits, so don't remake perly.c without byacc
138 LARGE = $large $split
139 mallocsrc = $mallocsrc
140 mallocobj = $mallocobj
145 # The following are mentioned only to make metaconfig include the
146 # appropriate questions in Configure. If you want to change these,
147 # edit config.sh instead, or specify --man1dir=/wherever on
148 # installman commandline.
150 scriptdir = $scriptdir
151 shrpdir = $archlibexp/CORE
152 privlib = $installprivlib
158 # The following are used to build and install shared libraries for
160 LDDLFLAGS = $lddlflags
161 SHRPLDFLAGS = $shrpldflags
162 CCDLFLAGS = $ccdlflags
164 PLDLFLAGS = $pldlflags
166 LLIBPERL= $linklibperl
169 # The following is used to include the current directory in
170 # the dynamic loader path you are building a shared libperl.
173 dynamic_ext = $dynamic_list
174 static_ext = $static_list
175 nonxs_ext = $nonxs_list
176 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
177 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
179 libs = $libs $cryptlib
181 public = perl $suidperl utilities translators
183 shellflags = $shellflags
185 # This is set to MAKE=$make if your $make command doesn't
189 # These variables may need to be manually set for non-Unix systems.
196 FIRSTMAKEFILE = $firstmakefile
198 # Any special object files needed by this architecture, e.g. os2/os2.obj
201 .SUFFIXES: .c \$(OBJ_EXT)
206 # how to tr(anslate) newlines
209 # not used by Makefile but by installperl;
210 # mentioned here so that metaconfig picks it up
211 INSTALL_USR_BIN_PERL = $installusrbinperl
215 ## In the following dollars and backticks do not need the extra backslash.
216 $spitshell >>Makefile <<'!NO!SUBS!'
218 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
220 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
222 # Files to be built with variable substitution before miniperl
224 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
225 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
227 shextract = Makefile cflags config.h makeaperl makedepend \
228 makedir myconfig writemain pod/Makefile
230 # Files to be built with variable substitution after miniperl is
231 # available. Dependencies handled manually below (for now).
233 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
234 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
237 # lib/lib.pm is not listed here because it has a rule of its own.
238 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
239 pod/pod2usage pod/podchecker pod/podselect \
242 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
244 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
245 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
246 h3 = opcode.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
247 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
248 h5 = utf8.h warnings.h
249 h = $(h1) $(h2) $(h3) $(h4) $(h5)
251 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
252 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
253 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
254 c4 = globals.c perlio.c perlapi.c
256 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
258 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)
259 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)
260 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)
262 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
264 # Once perl has been Configure'd and built ok you build different
265 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
266 # make clean; make LIBPERL=libperl<type>.a
267 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
268 # See cflags to understand how this works.
270 # This mechanism is getting clunky and might not even work any more.
271 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
277 $(CCCMD) $(PLDLFLAGS) $*.c
279 all: $(FIRSTMAKEFILE) miniperl extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext)
281 @echo " Everything is up to date. 'make test' to run test suite."
284 echo "testing compilation" > testcompile;
285 cd utils; $(MAKE) compile;
286 cd x2p; $(MAKE) compile;
287 cd pod; $(MAKE) compile;
289 translators: miniperl lib/Config.pm FORCE
290 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
292 utilities: miniperl lib/Config.pm $(plextract) lib/lib.pm FORCE
293 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
296 # This is now done by installman only if you actually want the man pages.
297 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
299 # Phony target to force checking subdirectories.
300 # Apparently some makes require an action for the FORCE target.
304 opmini$(OBJ_EXT): op.c
307 $(CCCMD) $(PLDLFLAGS) -DPERL_EXTERNAL_GLOB opmini.c
310 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
311 $(CCCMD) $(PLDLFLAGS) $*.c
313 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
314 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
315 sh mv-if-diff writemain.tmp perlmain.c
317 perlmain$(OBJ_EXT): perlmain.c
318 $(CCCMD) $(PLDLFLAGS) $*.c
320 # The file ext.libs is a list of libraries that must be linked in
321 # for static extensions, e.g. -lm -lgdbm, etc. The individual
322 # static extension Makefile's add to it.
323 ext.libs: $(static_ext)
324 -@test -f ext.libs || touch ext.libs
328 # if test -f .patch ; then $spitshell >>Makefile <<'!NO!SUBS!'
329 # patchlevel.h: .patch
330 # perl fix_pl || (make -f Makefile.micro && ./microperl fix_pl)
331 # $(SHELL) Makefile.SH
336 # How to build libperl. This is still rather convoluted.
337 # Load up custom Makefile.SH fragment for shared loading and executables:
340 Makefile_s="$osname/Makefile.SHs"
346 $spitshell >>Makefile <<!GROK!THIS!
348 # In AIX we need to change this for building Perl itself from
349 # its earlier definition (which is for building external
350 # extensions *after* Perl has been built and installed)
351 CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
354 case "$useshrplib" in
356 $spitshell >>Makefile <<'!NO!SUBS!'
358 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
359 MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
361 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
362 $(RMS) $(LIBPERL_NONSHR)
363 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
365 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
366 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
367 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
369 MINIPERLEXP = $(MINIPERL_NONSHR)
371 LIBPERLEXPORT = perl.exp
377 $spitshell >>Makefile <<'!NO!SUBS!'
378 MINIPERLEXP = miniperl$(EXE_EXT)
380 PERLEXPORT = perl.exp
385 $spitshell >>Makefile <<'!NO!SUBS!'
386 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
387 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
388 sh mv-if-diff perl.exp.tmp perl.exp
393 $spitshell >>Makefile <<'!NO!SUBS!'
394 MINIPERLEXP = miniperl
396 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
397 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
398 sh mv-if-diff perl.exp.tmp perl5.def
404 if test -r $Makefile_s ; then
406 $spitshell >>Makefile <<!GROK!THIS!
408 Makefile: $Makefile_s
411 $spitshell >>Makefile <<'!NO!SUBS!'
412 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
414 case "$useshrplib" in
416 $spitshell >>Makefile <<'!NO!SUBS!'
417 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
421 $spitshell >>Makefile <<'!NO!SUBS!'
422 rm -f libperl$(OBJ_EXT)
423 mv $@ libperl$(OBJ_EXT)
424 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
430 $spitshell >>Makefile <<'!NO!SUBS!'
432 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
433 @$(ranlib) $(LIBPERL)
437 $spitshell >>Makefile <<'!NO!SUBS!'
439 # How to build executables.
441 # The $& notation tells Sequent machines that it can do a parallel make,
442 # and is harmless otherwise.
443 # The miniperl -w -MExporter line is a basic cheap test to catch errors
444 # before make goes on to run preplibrary and then MakeMaker on extensions.
445 # This is very handy because later errors are often caused by miniperl
446 # build problems but that's not obvious to the novice.
447 # The Module used here must not depend on Config or any extensions.
451 case "${osname}${osvers}" in
453 $spitshell >>Makefile <<'!NO!SUBS!'
454 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
455 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
456 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
457 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
461 $spitshell >>Makefile <<'!NO!SUBS!'
462 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
463 $(CC) -o miniperl $(CLDFLAGS) \
464 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
465 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
466 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
470 $spitshell >>Makefile <<'!NO!SUBS!'
471 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
472 $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl \
473 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
474 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
479 $spitshell >>Makefile <<'!NO!SUBS!'
481 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
482 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
484 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
485 $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
487 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
488 $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
490 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
491 $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
493 # This version, if specified in Configure, does ONLY those scripts which need
494 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
495 # checks as well as the special code to validate that the script in question
496 # has been invoked correctly.
498 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
499 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
505 $spitshell >>Makefile <<'!NO!SUBS!'
507 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
509 $(LNS) perl.c sperl.c
510 $(CCCMD) -DIAMSUID sperl.c
513 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
514 # test -d lib/auto || mkdir lib/auto
516 preplibrary: miniperl lib/Config.pm
517 @sh ./makedir lib/auto
518 @echo " AutoSplitting perl library"
519 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
520 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
522 # Take care to avoid modifying lib/Config.pm without reason
523 # (If trying to create a new port and having problems with the configpm script,
524 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
525 lib/Config.pm: config.sh miniperl configpm lib/re.pm
526 $(LDLIBPTH) ./miniperl configpm configpm.tmp
527 sh mv-if-diff configpm.tmp $@
529 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
530 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
531 sh mv-if-diff minimod.tmp $@
533 lib/re.pm: ext/re/re.pm
535 cat ext/re/re.pm > $@
537 $(plextract): miniperl lib/Config.pm
538 $(LDLIBPTH) ./miniperl -Ilib $@.PL
540 lib/lib.pm: miniperl lib/Config.pm
541 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
544 -@test -f extra.pods && rm -f `cat extra.pods`
546 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
547 nx=`echo $$x | sed -e "s/README\.//"`; \
548 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
549 echo "pod/perl"$$nx".pod" >> extra.pods ; \
551 -@test -f vms/perlvms.pod && $(LNS) ../vms/perlvms.pod pod/perlvms.pod && echo "pod/perlvms.pod" >> extra.pods
554 $(MAKE) STRIPFLAGS=-s install
556 install: all install.perl install.man
558 install.perl: all installperl
559 if [ -n "$(COMPILE)" ]; \
561 cd utils; $(MAKE) compile; \
562 cd ../x2p; $(MAKE) compile; \
563 cd ../pod; $(MAKE) compile; \
566 $(LDLIBPTH) ./perl installperl $(STRIPFLAGS)
568 install.man: all installman
569 $(LDLIBPTH) ./perl installman
571 # XXX Experimental. Hardwired values, but useful for testing.
572 # Eventually Configure could ask for some of these values.
573 install.html: all installhtml
574 -@test -f README.vms && $(LNS) ../README.vms vms/README_vms.pod
575 $(LDLIBPTH) ./perl installhtml \
576 --podroot=. --podpath=. --recurse \
577 --htmldir=$(privlib)/html \
578 --htmlroot=$(privlib)/html \
579 --splithead=pod/perlipc \
580 --splititem=pod/perlfunc \
581 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
585 # I now supply perly.c with the kits, so the following section is
586 # used only if you force byacc to run by saying
588 # Since we patch up the byacc output, the perly.fixer script needs
589 # to run with precisely the same version of byacc as I use. You
590 # normally shouldn't remake perly.[ch].
595 sh $(shellflags) ./perly.fixer y.tab.c perly.c
596 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
597 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
598 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
599 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
600 chmod 664 vms/perly_c.vms vms/perly_h.vms
601 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
603 # We don't want to regenerate perly.c and perly.h, but they might
604 # appear out-of-date after a patch is applied or a new distribution is
612 # No compat3.sym here since and including the 5.004_50.
613 # No interp.sym since 5.005_03.
614 SYM = global.sym globvar.sym perlio.sym pp.sym
616 SYMH = perlvars.h intrpvar.h thrdvar.h
620 # The following files are generated automatically
621 # keywords.pl: keywords.h
622 # opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
623 # [* embed.pl needs pp.sym generated by opcode.pl! *]
624 # embed.pl: proto.h embed.h embedvar.h global.sym objXSUB.h
625 # perlapi.h perlapi.c pod/perlintern.pod
627 # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
629 # regcomp.pl: regnodes.h
630 # warnings.pl: warnings.h lib/warnings.pm
631 # The correct versions should be already supplied with the perl kit,
632 # in case you don't have perl available.
633 # To force them to be regenerated, type
636 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
637 embed.h embedvar.h global.sym \
638 pod/perlintern.pod pod/perlapi.pod \
639 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
640 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
641 warnings.h lib/warnings.pm
644 -$(CHMOD_W) $(AUTOGEN_FILES)
653 -cd pod; $(LDLIBPTH) make regen_pods
656 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
657 # automatically get built. There should ordinarily be no need to change
658 # any of this part of makefile.
660 # The dummy dependency is a place holder in case $(dynamic_ext) or
661 # $(static_ext) is empty.
663 # DynaLoader may be needed for extensions that use Makefile.PL.
665 $(DYNALOADER): miniperl preplibrary FORCE
666 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
668 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
669 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
671 s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
672 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
674 n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE
675 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
679 realclean: _cleaner _mopup
680 @echo "Note that make realclean does not delete config.sh or Policy.sh"
682 clobber: _cleaner _mopup
683 rm -f config.sh cppstdin Policy.sh
687 # Do not 'make _mopup' directly.
689 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
690 -@test -f extra.pods && rm -f `cat extra.pods`
691 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
692 -rm -f perl.exp ext.libs extra.pods
693 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
694 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
695 rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
697 # Do not 'make _tidy' directly.
699 -cd pod; $(LDLIBPTH) $(MAKE) clean
700 -cd utils; $(LDLIBPTH) $(MAKE) clean
701 -cd x2p; $(LDLIBPTH) $(MAKE) clean
702 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
703 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
705 rm -f testcompile compilelog
707 # Do not 'make _cleaner' directly.
709 -cd os2; rm -f Makefile
710 -cd pod; $(LDLIBPTH) $(MAKE) realclean
711 -cd utils; $(LDLIBPTH) $(MAKE) realclean
712 -cd x2p; $(LDLIBPTH) $(MAKE) realclean
713 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
714 $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
716 rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
717 rm -rf $(addedbyconf)
718 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
721 rm -f lib/.exists lib/*/.exists
722 rm -f h2ph.man pstruct
724 rm -f testcompile compilelog
725 -rmdir lib/B lib/Data lib/IO/Socket lib/IO lib/Sys
727 # The following lint has practically everything turned on. Unfortunately,
728 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
729 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
733 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
735 # Need to unset during recursion to go out of loop.
736 # The README below ensures that the dependency list is never empty and
737 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
739 MAKEDEPEND = Makefile makedepend
741 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
742 $(MAKE) depend MAKEDEPEND=
744 config.h: config_h.SH config.sh
747 # When done, touch perlmain.c so that it doesn't get remade each time.
749 sh ./makedepend MAKE=$(MAKE)
750 - test -s perlmain.c && touch perlmain.c
751 cd x2p; $(MAKE) depend
753 # Cannot postpone this until $firstmakefile is ready ;-)
754 makedepend: makedepend.SH config.sh
757 # Cannot delegate rebuilding of t/perl to make to allow interlaced
759 test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
760 cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
762 # Second branch is for testing without a tty or controling terminal.
764 test check: test-prep
765 if (true </dev/tty) >/dev/null 2>&1; then \
766 cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
768 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
771 utest ucheck: test-prep
772 if (true </dev/tty) >/dev/null 2>&1; then \
773 cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
775 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
778 # For testing without a tty or controling terminal. See t/op/stat.t
779 test-notty: test-prep
780 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
782 # Can't depend on lib/Config.pm because that might be where miniperl
784 minitest: miniperl lib/re.pm
785 @echo "You may see some irrelevant test failures if you have been unable"
786 @echo "to build lib/Config.pm."
787 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
788 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
790 # Handy way to run perlbug -ok without having to install and run the
791 # installed perlbug. We don't re-run the tests here - we trust the user.
792 # Please *don't* use this unless all tests pass.
793 # If you want to report test failures, use "make nok" instead.
795 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
798 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
801 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
804 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
807 echo $(c) | tr ' ' $(TRNL) >.clist
810 echo $(h) | tr ' ' $(TRNL) >.hlist
813 echo $(sh) | tr ' ' $(TRNL) >.shlist
816 echo $(pl) | tr ' ' $(TRNL) >.pllist
818 Makefile: Makefile.SH ./config.sh
822 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
824 elc: emacs/cperl-mode.elc
826 emacs/cperl-mode.elc: emacs/cperl-mode.el
827 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
831 TAGS: emacs/cperl-mode.elc
836 # Let's hope make will not go into an infinite loop on case-unsensitive systems
837 # This may also fail if . is in the head of the path, since perl will
840 perl emacs/e2ctags.pl TAGS > tags
842 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
843 # If this runs make out of memory, delete /usr/include lines.
850 $ln Makefile ../Makefile
853 $rm -f $firstmakefile
855 # Now do any special processing required before building.
860 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
863 rm -f y.tab.c y.tab.h
864 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
865 yacc -d perly.y >/dev/null 2>&1
866 if cmp -s y.tab.c perly.c; then
869 echo "perly.y -> perly.c" >&2
870 mv -f y.tab.c perly.c
872 sed -e '/^#include "perl\.h"/a\
874 #define yydebug PL_yydebug\
875 #define yynerrs PL_yynerrs\
876 #define yyerrflag PL_yyerrflag\
877 #define yychar PL_yychar\
878 #define yyval PL_yyval\
879 #define yylval PL_yylval' \
880 -e '/YYSTYPE *yyval;/D' \
881 -e '/YYSTYPE *yylval;/D' \
882 -e '/int yychar,/,/yynerrs;/D' \
883 -e 's/int yydebug = 0;/yydebug = 0;/' \
884 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
885 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
886 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
889 if cmp -s y.tab.h perly.h; then
892 echo "perly.y -> perly.h" >&2
893 mv -f y.tab.h perly.h
898 rm -f y.tab.c y.tab.h
901 # we are using two different yaccs in BS2000 Posix!
902 byacc a2p.y >/dev/null 2>&1
905 yacc a2p.y >/dev/null 2>&1
908 if cmp -s y.tab.c a2p.c
912 echo "a2p.y -> a2p.c" >&2
915 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
916 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
919 # In case somebody yacc -d:ed the a2p.y.
922 if cmp -s y.tab.h a2p.h
926 echo "a2p.h -> a2p.h" >&2
935 # Do nothing in VM/ESA.
938 echo "'$osname' is an EBCDIC system I don't know that well." >&4
942 '') echo "No parser files were regenerated. That's okay." >&2 ;;