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"
61 : Prepare dependency lists for Makefile.
63 for f in $dynamic_ext; do
64 : the dependency named here will never exist
65 base=`echo "$f" | sed 's/.*\///'`
66 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
70 for f in $static_ext; do
71 base=`echo "$f" | sed 's/.*\///'`
72 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
75 echo "Extracting Makefile (with variable substitutions)"
76 $spitshell >Makefile <<!GROK!THIS!
78 # This file is derived from Makefile.SH. Any changes made here will
79 # be lost the next time you run Configure.
80 # Makefile is used to generate $firstmakefile. The only difference
81 # is that $firstmakefile has the dependencies filled in at the end.
84 # I now supply perly.c with the kits, so don't remake perly.c without byacc
94 mallocsrc = $mallocsrc
95 mallocobj = $mallocobj
100 # The following are mentioned only to make metaconfig include the
101 # appropriate questions in Configure. If you want to change these,
102 # edit config.sh instead, or specify --man1dir=/wherever on
103 # installman commandline.
105 scriptdir = $scriptdir
106 shrpdir = $archlibexp/CORE
107 privlib = $installprivlib
113 # The following are used to build and install shared libraries for
115 LDDLFLAGS = $lddlflags
116 SHRPLDFLAGS = $shrpldflags
117 CCDLFLAGS = $ccdlflags
119 PLDLFLAGS = $pldlflags
121 LLIBPERL= $linklibperl
124 dynamic_ext = $dynamic_list
125 static_ext = $static_list
126 ext = \$(dynamic_ext) \$(static_ext)
127 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
129 libs = $libs $cryptlib
131 public = perl $suidperl utilities translators
133 shellflags = $shellflags
135 # This is set to MAKE=$make if your $make command doesn't
139 # These variables will be used in a future version to make
140 # the make file more portable to non-unix systems.
147 FIRSTMAKEFILE = $firstmakefile
149 # Any special object files needed by this architecture, e.g. os2/os2.obj
152 .SUFFIXES: .c \$(OBJ_EXT)
159 ## In the following dollars and backticks do not need the extra backslash.
160 $spitshell >>Makefile <<'!NO!SUBS!'
162 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
164 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
166 # Files to be built with variable substitution before miniperl
168 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
169 makedir.SH perl_exp.SH writemain.SH
171 shextract = Makefile cflags config.h makeaperl makedepend \
172 makedir perl.exp writemain
174 # Files to be built with variable substitution after miniperl is
175 # available. Dependencies handled manually below (for now).
177 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL
179 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text
181 addedbyconf = UU $(shextract) $(plextract) pstruct
183 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
184 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
185 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
186 h4 = regexp.h scope.h sv.h unixish.h util.h perlio.h
187 h = $(h1) $(h2) $(h3) $(h4)
189 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
190 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
191 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c
193 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
195 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)
196 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)
197 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)
199 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
201 # Once perl has been Configure'd and built ok you build different
202 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
203 # make clean; make LIBPERL=libperl<type>.a
204 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
205 # See cflags to understand how this works.
207 # This mechanism is getting clunky and might not even work any more.
208 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
214 $(CCCMD) $(PLDLFLAGS) $*.c
216 all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext)
217 @echo " "; echo " Everything is up to date."
219 translators: miniperl lib/Config.pm FORCE
220 @echo " "; echo " Making x2p stuff"; cd x2p; $(MAKE) all
222 utilities: miniperl lib/Config.pm FORCE
223 @echo " "; echo " Making utilities"; cd utils; $(MAKE) all
226 # This is now done by installman only if you actually want the man pages.
227 # @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
229 # Phony target to force checking subdirectories.
230 # Apparently some makes require an action for the FORCE target.
234 miniperlmain$(OBJ_EXT): miniperlmain.c
235 $(CCCMD) $(PLDLFLAGS) $*.c
237 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
238 sh writemain $(DYNALOADER) $(static_ext) > tmp
239 sh mv-if-diff tmp perlmain.c
241 perlmain$(OBJ_EXT): perlmain.c
242 $(CCCMD) $(PLDLFLAGS) $*.c
244 # The file ext.libs is a list of libraries that must be linked in
245 # for static extensions, e.g. -lm -lgdbm, etc. The individual
246 # static extension Makefile's add to it.
247 ext.libs: $(static_ext)
248 -@test -f ext.libs || touch ext.libs
252 # How to build libperl. This is still rather convoluted.
253 # Load up custom Makefile.SH fragment for shared loading and executables:
254 if test -r $osname/Makefile.SHs ; then
255 . $osname/Makefile.SHs
256 $spitshell >>Makefile <<!GROK!THIS!
258 Makefile: $osname/Makefile.SHs
261 $spitshell >>Makefile <<'!NO!SUBS!'
262 $(LIBPERL): $& perl$(OBJ_EXT) $(obj)
264 case "$useshrplib" in
266 $spitshell >>Makefile <<'!NO!SUBS!'
267 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
271 $spitshell >>Makefile <<'!NO!SUBS!'
272 mv $@ libperl$(OBJ_EXT)
273 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
279 $spitshell >>Makefile <<'!NO!SUBS!'
281 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
282 @$(ranlib) $(LIBPERL)
286 $spitshell >>Makefile <<'!NO!SUBS!'
288 # How to build executables.
290 # The $& notation tells Sequent machines that it can do a parallel make,
291 # and is harmless otherwise.
292 # The miniperl -w -MExporter line is a basic cheap test to catch errors
293 # before make goes on to run preplibrary and then MakeMaker on extensions.
294 # This is very handy because later errors are often caused by miniperl
295 # build problems but that's not obvious to the novice.
296 # The Module used here must not depend on Config or any extensions.
298 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL)
299 $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs)
300 @./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest
302 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
303 $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
305 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
306 purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
308 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
309 purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
311 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
312 quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
314 # This version, if specified in Configure, does ONLY those scripts which need
315 # set-id emulation. Suidperl must be setuid root. It contains the "taint"
316 # checks as well as the special code to validate that the script in question
317 # has been invoked correctly.
319 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
320 $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
326 $spitshell >>Makefile <<'!NO!SUBS!'
328 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
330 $(LNS) perl.c sperl.c
331 $(CCCMD) -DIAMSUID sperl.c
334 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
335 # test -d lib/auto || mkdir lib/auto
337 preplibrary: miniperl lib/Config.pm $(plextract)
338 @sh ./makedir lib/auto
339 @echo " AutoSplitting perl library"
340 @./miniperl -Ilib -e 'use AutoSplit; \
341 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
343 # Take care to avoid modifying lib/Config.pm without reason
344 lib/Config.pm: config.sh miniperl configpm
345 ./miniperl configpm tmp
346 sh mv-if-diff tmp lib/Config.pm
348 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
349 ./miniperl minimod.pl > tmp && mv tmp $@
351 $(plextract): miniperl lib/Config.pm
352 ./miniperl -Ilib $@.PL
354 install: all install.perl install.man
356 install.perl: all installperl
359 install.man: all installman
362 # Not implemented yet.
363 #install.html: all installhtml
366 # I now supply perly.c with the kits, so the following section is
367 # used only if you force byacc to run by saying
369 # Since we patch up the byacc output, the perly.fixer script needs
370 # to run with precisely the same version of byacc as I use. You
371 # normally shouldn't remake perly.[ch].
374 @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
376 sh $(shellflags) ./perly.fixer y.tab.c perly.c
377 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
378 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
379 echo 'extern YYSTYPE yylval;' >>y.tab.h
380 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
381 - perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
383 # We don't want to regenerate perly.c and perly.h, but they might
384 # appear out-of-date after a patch is applied or a new distribution is
392 # The following three header files are generated automatically
393 # keywords.h: keywords.pl
394 # opcode.h: opcode.pl
395 # embed.h: embed.pl global.sym interp.sym
396 # The correct versions should be already supplied with the perl kit,
397 # in case you don't have perl available.
398 # To force them to run, type
406 # Names added to $(dynamic_ext) or $(static_ext) will automatically
407 # get built. There should ordinarily be no need to change any of
408 # this part of makefile.
410 # The dummy dependency is a place holder in case $(dynamic_ext) or
411 # $(static_ext) is empty.
413 # DynaLoader may be needed for extensions that use Makefile.PL.
415 $(DYNALOADER): miniperl preplibrary FORCE
416 @sh ext/util/make_ext static $@ LIBPERL_A=$(LIBPERL)
418 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
419 @sh ext/util/make_ext dynamic $@ LIBPERL_A=$(LIBPERL)
421 s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
422 @sh ext/util/make_ext static $@ LIBPERL_A=$(LIBPERL)
426 realclean: _cleaner _mopup
427 @echo "Note that make realclean does not delete config.sh"
429 clobber: _cleaner _mopup
430 rm -f config.sh cppstdin
434 # Do not 'make _mopup' directly.
436 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
437 rm -f perl.exp ext.libs
438 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
439 rm -f perl suidperl miniperl $(LIBPERL)
441 # Do not 'make _tidy' directly.
443 -cd pod; $(MAKE) clean
444 -cd utils; $(MAKE) clean
445 -cd x2p; $(MAKE) clean
446 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
447 sh ext/util/make_ext clean $$x ; \
450 # Do not 'make _cleaner' directly.
452 -cd os2; rm -f Makefile
453 -cd pod; $(MAKE) realclean
454 -cd utils; $(MAKE) realclean
455 -cd x2p; $(MAKE) realclean
456 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
457 sh ext/util/make_ext realclean $$x ; \
459 rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
460 rm -rf $(addedbyconf)
461 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
465 rm -f h2ph.man pstruct
468 # The following lint has practically everything turned on. Unfortunately,
469 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
470 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
474 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
476 # Need to unset during recursion to go out of loop
478 MAKEDEPEND = makedepend
480 $(FIRSTMAKEFILE): Makefile $(MAKEDEPEND)
481 $(MAKE) depend MAKEDEPEND=
483 config.h: config_h.SH config.sh
486 perl.exp: perl_exp.SH config.sh
489 # When done, touch perlmain.c so that it doesn't get remade each time.
492 - test -s perlmain.c && touch perlmain.c
493 cd x2p; $(MAKE) depend
495 # Cannot postpone this until $firstmakefile is ready ;-)
496 makedepend: makedepend.SH config.sh
499 check test: miniperl perl preplibrary $(dynamic_ext)
500 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) && ./perl TEST </dev/tty
502 # Can't depend on lib/Config.pm because that might be where miniperl
505 @echo "You may see some irrelevant test failures if you have been unable"
506 @echo "to build lib/Config.pm."
507 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
508 && ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
511 echo $(c) | tr ' ' '\012' >.clist
514 echo $(h) | tr ' ' '\012' >.hlist
517 echo $(sh) | tr ' ' '\012' >.shlist
520 echo $(pl) | tr ' ' '\012' >.pllist
522 Makefile: Makefile.SH ./config.sh
526 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
528 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
529 # If this runs make out of memory, delete /usr/include lines.
536 $ln Makefile ../Makefile
539 $rm -f $firstmakefile