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)'
30 pldlflags="$cccdlflags"
31 # NeXT-4 specific stuff. Can't we do this in the hint file?
32 case "${osname}${osvers}" in
35 lddlflags="-dynamic -undefined warning -framework System \
36 -compatibility_version 1 -current_version $patchlevel \
37 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
39 sunos*|freebsd[23]*|netbsd*)
43 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
46 shrpldflags="$shrpldflags -e _nostart $ldflags $libs $cryptlib"
49 shrpldflags="$shrpldflags -b noentry $ldflags $libs $cryptlib"
52 aixinstdir=`pwd | sed 's/\/UU$//'`
53 linklibperl="-L $archlibexp/CORE -L $aixinstdir -lperl"
56 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+b$archlibexp/CORE -lperl"
64 : Prepare dependency lists for Makefile.
66 for f in $dynamic_ext; do
67 : the dependency named here will never exist
68 base=`echo "$f" | sed 's/.*\///'`
69 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
73 for f in $static_ext; do
74 base=`echo "$f" | sed 's/.*\///'`
75 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
78 echo "Extracting Makefile (with variable substitutions)"
79 $spitshell >Makefile <<!GROK!THIS!
81 # This file is derived from Makefile.SH. Any changes made here will
82 # be lost the next time you run Configure.
83 # Makefile is used to generate $firstmakefile. The only difference
84 # is that $firstmakefile has the dependencies filled in at the end.
87 # I now supply perly.c with the kits, so don't remake perly.c without byacc
97 mallocsrc = $mallocsrc
98 mallocobj = $mallocobj
103 # The following are mentioned only to make metaconfig include the
104 # appropriate questions in Configure. If you want to change these,
105 # edit config.sh instead, or specify --man1dir=/wherever on
106 # installman commandline.
108 scriptdir = $scriptdir
109 shrpdir = $archlibexp/CORE
110 privlib = $installprivlib
116 # The following are used to build and install shared libraries for
118 LDDLFLAGS = $lddlflags
119 SHRPLDFLAGS = $shrpldflags
120 CCDLFLAGS = $ccdlflags
122 PLDLFLAGS = $pldlflags
124 LLIBPERL= $linklibperl
127 dynamic_ext = $dynamic_list
128 static_ext = $static_list
129 ext = \$(dynamic_ext) \$(static_ext)
130 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
132 libs = $libs $cryptlib
134 public = perl $suidperl utilities translators
136 shellflags = $shellflags
138 # This is set to MAKE=$make if your $make command doesn't
142 # These variables may need to be manually set for non-Unix systems.
149 FIRSTMAKEFILE = $firstmakefile
151 # Any special object files needed by this architecture, e.g. os2/os2.obj
154 .SUFFIXES: .c \$(OBJ_EXT)
161 ## In the following dollars and backticks do not need the extra backslash.
162 $spitshell >>Makefile <<'!NO!SUBS!'
164 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
166 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
168 # Files to be built with variable substitution before miniperl
170 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
171 makedir.SH perl_exp.SH writemain.SH
173 shextract = Makefile cflags config.h makeaperl makedepend \
174 makedir perl.exp writemain
176 # Files to be built with variable substitution after miniperl is
177 # available. Dependencies handled manually below (for now).
179 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL
181 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text
183 addedbyconf = UU $(shextract) $(plextract) pstruct
185 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
186 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
187 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
188 h4 = regexp.h scope.h sv.h unixish.h util.h perlio.h thread.h
189 h5 = bytecode.h byterun.h
190 h = $(h1) $(h2) $(h3) $(h4) $(h5)
192 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c byterun.c
193 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
194 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c
196 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
198 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)
199 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)
200 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)
202 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
204 # Once perl has been Configure'd and built ok you build different
205 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
206 # make clean; make LIBPERL=libperl<type>.a
207 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
208 # See cflags to understand how this works.
210 # This mechanism is getting clunky and might not even work any more.
211 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
217 $(CCCMD) $(PLDLFLAGS) $*.c
219 all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext)
220 @echo " "; echo " Everything is up to date."
222 translators: miniperl lib/Config.pm FORCE
223 @echo " "; echo " Making x2p stuff"; cd x2p; $(MAKE) all
225 utilities: miniperl lib/Config.pm FORCE
226 @echo " "; echo " Making utilities"; cd utils; $(MAKE) all
229 # This is now done by installman only if you actually want the man pages.
230 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
232 # Phony target to force checking subdirectories.
233 # Apparently some makes require an action for the FORCE target.
237 miniperlmain$(OBJ_EXT): miniperlmain.c
238 $(CCCMD) $(PLDLFLAGS) $*.c
240 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
241 sh writemain $(DYNALOADER) $(static_ext) > tmp
242 sh mv-if-diff tmp perlmain.c
244 perlmain$(OBJ_EXT): perlmain.c
245 $(CCCMD) $(PLDLFLAGS) $*.c
247 # The file ext.libs is a list of libraries that must be linked in
248 # for static extensions, e.g. -lm -lgdbm, etc. The individual
249 # static extension Makefile's add to it.
250 ext.libs: $(static_ext)
251 -@test -f ext.libs || touch ext.libs
255 # How to build libperl. This is still rather convoluted.
256 # Load up custom Makefile.SH fragment for shared loading and executables:
257 if test -r $osname/Makefile.SHs ; then
258 . $osname/Makefile.SHs
259 $spitshell >>Makefile <<!GROK!THIS!
261 Makefile: $osname/Makefile.SHs
264 $spitshell >>Makefile <<'!NO!SUBS!'
265 $(LIBPERL): $& perl$(OBJ_EXT) $(obj)
267 case "$useshrplib" in
269 $spitshell >>Makefile <<'!NO!SUBS!'
270 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
274 $spitshell >>Makefile <<'!NO!SUBS!'
275 mv $@ libperl$(OBJ_EXT)
276 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
282 $spitshell >>Makefile <<'!NO!SUBS!'
284 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
285 @$(ranlib) $(LIBPERL)
289 $spitshell >>Makefile <<'!NO!SUBS!'
291 # How to build executables.
293 # The $& notation tells Sequent machines that it can do a parallel make,
294 # and is harmless otherwise.
295 # The miniperl -w -MExporter line is a basic cheap test to catch errors
296 # before make goes on to run preplibrary and then MakeMaker on extensions.
297 # This is very handy because later errors are often caused by miniperl
298 # build problems but that's not obvious to the novice.
299 # The Module used here must not depend on Config or any extensions.
301 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL)
302 $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs)
303 @./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest
305 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
306 $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
308 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
309 $(SHRPENV) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
311 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
312 $(SHRPENV) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
314 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
315 $(SHRPENV) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
317 # This version, if specified in Configure, does ONLY those scripts which need
318 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
319 # checks as well as the special code to validate that the script in question
320 # has been invoked correctly.
322 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
323 $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
329 $spitshell >>Makefile <<'!NO!SUBS!'
331 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
333 $(LNS) perl.c sperl.c
334 $(CCCMD) -DIAMSUID sperl.c
337 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
338 # test -d lib/auto || mkdir lib/auto
340 preplibrary: miniperl lib/Config.pm $(plextract)
341 @sh ./makedir lib/auto
342 @echo " AutoSplitting perl library"
343 @./miniperl -Ilib -e 'use AutoSplit; \
344 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
346 # Take care to avoid modifying lib/Config.pm without reason
347 # (If trying to create a new port and having problems with the configpm script,
348 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
349 lib/Config.pm: config.sh miniperl configpm
350 ./miniperl configpm tmp
351 sh mv-if-diff tmp lib/Config.pm
353 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
354 ./miniperl minimod.pl > tmp && mv tmp $@
356 $(plextract): miniperl lib/Config.pm
357 `echo ./miniperl -Ilib $@.PL`
359 install: all install.perl install.man
361 install.perl: all installperl
364 install.man: all installman
367 # XXX Experimental. Hardwired values, but useful for testing.
368 # Eventually Configure could ask for some of these values.
369 install.html: all installhtml
371 --podroot=. --podpath=. --recurse \
372 --htmldir=$(privlib)/html \
373 --htmlroot=$(privlib)/html \
374 --splithead=pod/perlipc \
375 --splititem=pod/perlfunc \
376 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
380 # I now supply perly.c with the kits, so the following section is
381 # used only if you force byacc to run by saying
383 # Since we patch up the byacc output, the perly.fixer script needs
384 # to run with precisely the same version of byacc as I use. You
385 # normally shouldn't remake perly.[ch].
388 @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
391 sh $(shellflags) ./perly.fixer y.tab.c perly.c
392 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
393 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
394 echo 'extern YYSTYPE yylval;' >>y.tab.h
395 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
396 chmod 664 vms/perly_c.vms vms/perly_h.vms
397 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
399 # We don't want to regenerate perly.c and perly.h, but they might
400 # appear out-of-date after a patch is applied or a new distribution is
408 SYM = global.sym interp.sym compat3.sym
410 SYMH = perlvars.h thrdvar.h
412 # The following files are generated automatically
413 # keywords.h: keywords.pl
414 # opcode.h: opcode.pl
415 # embed.h: embed.pl global.sym interp.sym
416 # byterun.h: bytecode.pl
417 # byterun.c: bytecode.pl
418 # lib/B/Asmdata.pm: bytecode.pl
419 # The correct versions should be already supplied with the perl kit,
420 # in case you don't have perl available.
421 # To force them to run, type
430 # Names added to $(dynamic_ext) or $(static_ext) will automatically
431 # get built. There should ordinarily be no need to change any of
432 # this part of makefile.
434 # The dummy dependency is a place holder in case $(dynamic_ext) or
435 # $(static_ext) is empty.
437 # DynaLoader may be needed for extensions that use Makefile.PL.
439 $(DYNALOADER): miniperl preplibrary FORCE
440 @sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
442 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
443 @sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
445 s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
446 @sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
450 realclean: _cleaner _mopup
451 @echo "Note that make realclean does not delete config.sh"
453 clobber: _cleaner _mopup
454 rm -f config.sh cppstdin
458 # Do not 'make _mopup' directly.
460 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
461 rm -f perl.exp ext.libs
462 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
463 rm -f perl suidperl miniperl $(LIBPERL)
465 # Do not 'make _tidy' directly.
467 -cd pod; $(MAKE) clean
468 -cd utils; $(MAKE) clean
469 -cd x2p; $(MAKE) clean
470 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
471 sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
474 # Do not 'make _cleaner' directly.
476 -cd os2; rm -f Makefile
477 -cd pod; $(MAKE) realclean
478 -cd utils; $(MAKE) realclean
479 -cd x2p; $(MAKE) realclean
480 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
481 sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
483 rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
484 rm -rf $(addedbyconf)
485 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
489 rm -f h2ph.man pstruct
492 # The following lint has practically everything turned on. Unfortunately,
493 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
494 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
498 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
500 # Need to unset during recursion to go out of loop.
501 # The README below ensures that the dependency list is never empty and
502 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
504 MAKEDEPEND = Makefile makedepend
506 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
507 $(MAKE) depend MAKEDEPEND=
509 config.h: config_h.SH config.sh
513 perl.exp: perl_exp.SH config.sh $(SYM) $(SYMH)
516 # When done, touch perlmain.c so that it doesn't get remade each time.
518 sh ./makedepend MAKE=$(MAKE)
519 - test -s perlmain.c && touch perlmain.c
520 cd x2p; $(MAKE) depend
522 # Cannot postpone this until $firstmakefile is ready ;-)
523 makedepend: makedepend.SH config.sh
526 test-prep: miniperl perl preplibrary $(dynamic_ext)
527 cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
529 test check: test-prep
530 cd t && ./perl TEST </dev/tty
532 # For testing without a tty or controling terminal. See t/op/stat.t
533 test-notty: test-prep
534 cd t && PERL_SKIP_TTY_TEST=1 ./perl TEST
536 # Can't depend on lib/Config.pm because that might be where miniperl
539 @echo "You may see some irrelevant test failures if you have been unable"
540 @echo "to build lib/Config.pm."
541 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
542 && ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
544 # Handy way to run perlbug -ok without having to install and run the
545 # installed perlbug. We don't re-run the tests here - we trust the user.
546 # Please *don't* use this unless all tests pass.
547 # If you want to report test failures, just use "perlbug -Ilib".
549 ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
552 echo $(c) | tr ' ' '\012' >.clist
555 echo $(h) | tr ' ' '\012' >.hlist
558 echo $(sh) | tr ' ' '\012' >.shlist
561 echo $(pl) | tr ' ' '\012' >.pllist
563 Makefile: Makefile.SH ./config.sh
567 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
572 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
573 # If this runs make out of memory, delete /usr/include lines.
580 $ln Makefile ../Makefile
583 $rm -f $firstmakefile