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* libperl.so.
33 ldlibpth="LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH"
35 pldlflags="$cccdlflags"
36 # NeXT-4 specific stuff. Can't we do this in the hint file?
37 case "${osname}${osvers}" in
40 lddlflags="-dynamic -undefined warning -framework System \
41 -compatibility_version 1 -current_version $patchlevel \
42 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
43 # NeXT uses a different name.
44 ldlibpth="DYLD_LIBRARY_PATH=`pwd`:$DYLD_LIBRARY_PATH"
46 os2*) # OS/2 doesn't need anything special for LD_LIBRARY_PATH.
49 sunos*|freebsd[23]*|netbsd*)
53 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
56 shrpldflags="$shrpldflags -e _nostart $ldflags $libs $cryptlib"
59 shrpldflags="$shrpldflags -b noentry $ldflags $libs $cryptlib"
62 aixinstdir=`pwd | sed 's/\/UU$//'`
63 linklibperl="-L $archlibexp/CORE -L $aixinstdir -lperl"
66 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+b$archlibexp/CORE -lperl"
74 : Prepare dependency lists for Makefile.
76 for f in $dynamic_ext; do
77 : the dependency named here will never exist
78 base=`echo "$f" | sed 's/.*\///'`
79 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
83 for f in $static_ext; do
84 base=`echo "$f" | sed 's/.*\///'`
85 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
88 echo "Extracting Makefile (with variable substitutions)"
89 $spitshell >Makefile <<!GROK!THIS!
91 # This file is derived from Makefile.SH. Any changes made here will
92 # be lost the next time you run Configure.
93 # Makefile is used to generate $firstmakefile. The only difference
94 # is that $firstmakefile has the dependencies filled in at the end.
97 # I now supply perly.c with the kits, so don't remake perly.c without byacc
106 LARGE = $large $split
107 mallocsrc = $mallocsrc
108 mallocobj = $mallocobj
113 # The following are mentioned only to make metaconfig include the
114 # appropriate questions in Configure. If you want to change these,
115 # edit config.sh instead, or specify --man1dir=/wherever on
116 # installman commandline.
118 scriptdir = $scriptdir
119 shrpdir = $archlibexp/CORE
120 privlib = $installprivlib
126 # The following are used to build and install shared libraries for
128 LDDLFLAGS = $lddlflags
129 SHRPLDFLAGS = $shrpldflags
130 CCDLFLAGS = $ccdlflags
132 PLDLFLAGS = $pldlflags
134 LLIBPERL= $linklibperl
137 # The following is used to include the current directory in
138 # LD_LIBRARY_PATH if you are building a shared libperl.so.
141 dynamic_ext = $dynamic_list
142 static_ext = $static_list
143 ext = \$(dynamic_ext) \$(static_ext)
144 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
146 libs = $libs $cryptlib
148 public = perl $suidperl utilities translators
150 shellflags = $shellflags
152 # This is set to MAKE=$make if your $make command doesn't
156 # These variables may need to be manually set for non-Unix systems.
163 FIRSTMAKEFILE = $firstmakefile
165 # Any special object files needed by this architecture, e.g. os2/os2.obj
168 .SUFFIXES: .c \$(OBJ_EXT)
175 ## In the following dollars and backticks do not need the extra backslash.
176 $spitshell >>Makefile <<'!NO!SUBS!'
178 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
180 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
182 # Files to be built with variable substitution before miniperl
184 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
185 makedir.SH perl_exp.SH writemain.SH
187 shextract = Makefile cflags config.h makeaperl makedepend \
188 makedir perl.exp writemain
190 # Files to be built with variable substitution after miniperl is
191 # available. Dependencies handled manually below (for now).
193 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL
195 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text
197 addedbyconf = UU $(shextract) $(plextract) pstruct
199 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
200 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
201 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
202 h4 = regexp.h scope.h sv.h unixish.h util.h perlio.h thread.h
203 h5 = bytecode.h byterun.h
204 h = $(h1) $(h2) $(h3) $(h4) $(h5)
206 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c byterun.c
207 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
208 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c
210 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
212 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) byterun$(OBJ_EXT)
213 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)
214 obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT)
216 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
218 # Once perl has been Configure'd and built ok you build different
219 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
220 # make clean; make LIBPERL=libperl<type>.a
221 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
222 # See cflags to understand how this works.
224 # This mechanism is getting clunky and might not even work any more.
225 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
231 $(CCCMD) $(PLDLFLAGS) $*.c
233 all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext)
234 @echo " "; echo " Everything is up to date."
237 echo "testing compilation" > testcompile;
238 cd utils; $(MAKE) compile;
239 cd x2p; $(MAKE) compile;
240 cd pod; $(MAKE) compile;
242 translators: miniperl lib/Config.pm FORCE
243 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
245 utilities: miniperl lib/Config.pm FORCE
246 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
249 # This is now done by installman only if you actually want the man pages.
250 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
252 # Phony target to force checking subdirectories.
253 # Apparently some makes require an action for the FORCE target.
257 miniperlmain$(OBJ_EXT): miniperlmain.c
258 $(CCCMD) $(PLDLFLAGS) $*.c
260 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
261 sh writemain $(DYNALOADER) $(static_ext) > tmp
262 sh mv-if-diff tmp perlmain.c
264 perlmain$(OBJ_EXT): perlmain.c
265 $(CCCMD) $(PLDLFLAGS) $*.c
267 # The file ext.libs is a list of libraries that must be linked in
268 # for static extensions, e.g. -lm -lgdbm, etc. The individual
269 # static extension Makefile's add to it.
270 ext.libs: $(static_ext)
271 -@test -f ext.libs || touch ext.libs
275 # How to build libperl. This is still rather convoluted.
276 # Load up custom Makefile.SH fragment for shared loading and executables:
277 if test -r $osname/Makefile.SHs ; then
278 . $osname/Makefile.SHs
279 $spitshell >>Makefile <<!GROK!THIS!
281 Makefile: $osname/Makefile.SHs
284 $spitshell >>Makefile <<'!NO!SUBS!'
285 $(LIBPERL): $& perl$(OBJ_EXT) $(obj)
287 case "$useshrplib" in
289 $spitshell >>Makefile <<'!NO!SUBS!'
290 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
294 $spitshell >>Makefile <<'!NO!SUBS!'
295 mv $@ libperl$(OBJ_EXT)
296 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
302 $spitshell >>Makefile <<'!NO!SUBS!'
304 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
305 @$(ranlib) $(LIBPERL)
309 $spitshell >>Makefile <<'!NO!SUBS!'
311 # How to build executables.
313 # The $& notation tells Sequent machines that it can do a parallel make,
314 # and is harmless otherwise.
315 # The miniperl -w -MExporter line is a basic cheap test to catch errors
316 # before make goes on to run preplibrary and then MakeMaker on extensions.
317 # This is very handy because later errors are often caused by miniperl
318 # build problems but that's not obvious to the novice.
319 # The Module used here must not depend on Config or any extensions.
321 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL)
322 $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs)
323 @ $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest
325 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
326 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
328 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
329 $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
331 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
332 $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
334 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
335 $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
337 # This version, if specified in Configure, does ONLY those scripts which need
338 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
339 # checks as well as the special code to validate that the script in question
340 # has been invoked correctly.
342 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
343 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
349 $spitshell >>Makefile <<'!NO!SUBS!'
351 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
353 $(LNS) perl.c sperl.c
354 $(CCCMD) -DIAMSUID sperl.c
357 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
358 # test -d lib/auto || mkdir lib/auto
360 preplibrary: miniperl lib/Config.pm $(plextract)
361 @sh ./makedir lib/auto
362 @echo " AutoSplitting perl library"
363 @$(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
364 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
366 # Take care to avoid modifying lib/Config.pm without reason
367 # (If trying to create a new port and having problems with the configpm script,
368 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
369 lib/Config.pm: config.sh miniperl configpm
370 $(LDLIBPTH) ./miniperl configpm tmp
371 sh mv-if-diff tmp lib/Config.pm
373 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
374 $(LDLIBPTH) ./miniperl minimod.pl > tmp && mv tmp $@
376 $(plextract): miniperl lib/Config.pm
377 `echo $(LDLIBPTH) ./miniperl -Ilib $@.PL`
379 install: all install.perl install.man
381 install.perl: all installperl
382 if [ -n "$(COMPILE)" ]; \
384 cd utils; $(MAKE) compile; \
385 cd ../x2p; $(MAKE) compile; \
386 cd ../pod; $(MAKE) compile; \
388 $(LDLIBPTH) ./perl installperl
390 install.man: all installman
391 $(LDLIBPTH) ./perl installman
393 # XXX Experimental. Hardwired values, but useful for testing.
394 # Eventually Configure could ask for some of these values.
395 install.html: all installhtml
396 $(LDLIBPTH) ./perl installhtml \
397 --podroot=. --podpath=. --recurse \
398 --htmldir=$(privlib)/html \
399 --htmlroot=$(privlib)/html \
400 --splithead=pod/perlipc \
401 --splititem=pod/perlfunc \
402 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
406 # I now supply perly.c with the kits, so the following section is
407 # used only if you force byacc to run by saying
409 # Since we patch up the byacc output, the perly.fixer script needs
410 # to run with precisely the same version of byacc as I use. You
411 # normally shouldn't remake perly.[ch].
414 @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
417 sh $(shellflags) ./perly.fixer y.tab.c perly.c
418 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
419 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
420 echo 'extern YYSTYPE yylval;' >>y.tab.h
421 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
422 chmod 664 vms/perly_c.vms vms/perly_h.vms
423 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
425 # We don't want to regenerate perly.c and perly.h, but they might
426 # appear out-of-date after a patch is applied or a new distribution is
434 # No compat3.sym here since and including the 5.004_50.
435 SYM = global.sym interp.sym perlio.sym thread.sym
437 SYMH = perlvars.h thrdvar.h
439 # The following files are generated automatically
440 # keywords.h: keywords.pl
441 # opcode.h: opcode.pl
442 # embed.h: embed.pl global.sym interp.sym
443 # byterun.h: bytecode.pl
444 # byterun.c: bytecode.pl
445 # lib/B/Asmdata.pm: bytecode.pl
446 # The correct versions should be already supplied with the perl kit,
447 # in case you don't have perl available.
448 # To force them to run, type
457 # Names added to $(dynamic_ext) or $(static_ext) will automatically
458 # get built. There should ordinarily be no need to change any of
459 # this part of makefile.
461 # The dummy dependency is a place holder in case $(dynamic_ext) or
462 # $(static_ext) is empty.
464 # DynaLoader may be needed for extensions that use Makefile.PL.
466 $(DYNALOADER): miniperl preplibrary FORCE
467 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
469 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
470 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
472 s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
473 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
477 realclean: _cleaner _mopup
478 @echo "Note that make realclean does not delete config.sh or Policy.sh"
480 clobber: _cleaner _mopup
481 rm -f config.sh cppstdin Policy.sh
485 # Do not 'make _mopup' directly.
487 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
488 rm -f perl.exp ext.libs
489 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
490 rm -f perl suidperl miniperl $(LIBPERL)
492 # Do not 'make _tidy' directly.
494 -cd pod; $(MAKE) clean
495 -cd utils; $(MAKE) clean
496 -cd x2p; $(MAKE) clean
497 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
498 sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
500 rm -f testcompile compilelog
502 # Do not 'make _cleaner' directly.
504 -cd os2; rm -f Makefile
505 -cd pod; $(MAKE) realclean
506 -cd utils; $(MAKE) realclean
507 -cd x2p; $(MAKE) realclean
508 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
509 sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
511 rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
512 rm -rf $(addedbyconf)
513 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
517 rm -f h2ph.man pstruct
519 rm -f testcompile compilelog
521 # The following lint has practically everything turned on. Unfortunately,
522 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
523 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
527 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
529 # Need to unset during recursion to go out of loop.
530 # The README below ensures that the dependency list is never empty and
531 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
533 MAKEDEPEND = Makefile makedepend
535 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
536 $(MAKE) depend MAKEDEPEND=
538 config.h: config_h.SH config.sh
542 perl.exp: perl_exp.SH config.sh $(SYM) $(SYMH)
545 # When done, touch perlmain.c so that it doesn't get remade each time.
547 sh ./makedepend MAKE=$(MAKE)
548 - test -s perlmain.c && touch perlmain.c
549 cd x2p; $(MAKE) depend
551 # Cannot postpone this until $firstmakefile is ready ;-)
552 makedepend: makedepend.SH config.sh
555 test-prep: miniperl perl preplibrary utilities $(dynamic_ext)
556 cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
558 test check: test-prep
559 cd t && $(LDLIBPTH) ./perl TEST </dev/tty
561 # For testing without a tty or controling terminal. See t/op/stat.t
562 test-notty: test-prep
563 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
565 # Can't depend on lib/Config.pm because that might be where miniperl
568 @echo "You may see some irrelevant test failures if you have been unable"
569 @echo "to build lib/Config.pm."
570 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
571 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
573 # Handy way to run perlbug -ok without having to install and run the
574 # installed perlbug. We don't re-run the tests here - we trust the user.
575 # Please *don't* use this unless all tests pass.
576 # If you want to report test failures, use "make nok" instead.
578 $(LBLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
581 $(LBLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
584 echo $(c) | tr ' ' '\012' >.clist
587 echo $(h) | tr ' ' '\012' >.hlist
590 echo $(sh) | tr ' ' '\012' >.shlist
593 echo $(pl) | tr ' ' '\012' >.pllist
595 Makefile: Makefile.SH ./config.sh
599 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
604 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
605 # If this runs make out of memory, delete /usr/include lines.
612 $ln Makefile ../Makefile
615 $rm -f $firstmakefile