Devel::Peek
[p5sagit/p5-mst-13.2.git] / Makefile.SH
CommitLineData
599a829f 1#! /bin/sh
2000072c 2case $CONFIGDOTSH in
2304df62 3'')
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=../../../..;
9 else
10 echo "Can't find config.sh."; exit 1
11 fi
12 . $TOP/config.sh
13 ;;
14esac
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.
17case "$0" in
18*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
19esac
20
2304df62 21case "$d_dosuid" in
22*define*) suidperl='suidperl' ;;
23*) suidperl='';;
24esac
25
d5d19f97 26linklibperl='$(LIBPERL)'
3c321fdc 27shrpldflags='$(LDDLFLAGS)'
6ee623d5 28ldlibpth=''
d96ebe2e 29case "$useshrplib" in
30true)
6ee623d5 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"
34
d5d19f97 35 pldlflags="$cccdlflags"
f0efd8cf 36 # NeXT-4 specific stuff. Can't we do this in the hint file?
d96ebe2e 37 case "${osname}${osvers}" in
38 next4*)
3c321fdc 39 ld=libtool
40 lddlflags="-dynamic -undefined warning -framework System \
41 -compatibility_version 1 -current_version $patchlevel \
42 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
6ee623d5 43 # NeXT uses a different name.
44 ldlibpth="DYLD_LIBRARY_PATH=`pwd`:$DYLD_LIBRARY_PATH"
45 ;;
8f1f23e8 46 rhapsody*)
47 ldlibpth="DYLD_LIBRARY_PATH=`pwd`/Perl:$DYLD_LIBRARY_PATH"
48 ;;
1cab015a 49 cygwin*) ldlibpth="PATH='`pwd`:$PATH'"
8736538c 50 linklibperl="-lperl"
51 ;;
6ee623d5 52 os2*) # OS/2 doesn't need anything special for LD_LIBRARY_PATH.
53 ldlibpth=''
d96ebe2e 54 ;;
73d40b3e 55 sunos*)
d5d19f97 56 linklibperl="-lperl"
57 ;;
43039de7 58 netbsd*|freebsd[234]*|openbsd*)
099685bc 59 linklibperl="-L. -lperl"
60 ;;
3c321fdc 61 aix*)
62 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
1553ab04 63 case "$osvers" in
64 3*)
65 shrpldflags="$shrpldflags -e _nostart $ldflags $libs $cryptlib"
66 ;;
67 *)
68 shrpldflags="$shrpldflags -b noentry $ldflags $libs $cryptlib"
69 ;;
70 esac
3c321fdc 71 aixinstdir=`pwd | sed 's/\/UU$//'`
72 linklibperl="-L $archlibexp/CORE -L $aixinstdir -lperl"
86959918 73 ldlibpth="LIBPATH=`pwd`:${LIBPATH}"
3c321fdc 74 ;;
1c7d1a19 75 hpux*)
76 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
77 ldlibpth="SHLIB_PATH=`pwd`:${SHLIB_PATH}"
fb73857a 78 ;;
46193409 79 beos*) ldlibpth="LIBRARY_PATH=`pwd`:$LIBRARY_PATH"
80 ;;
655635e8 81 esac
d5d19f97 82 ;;
f0efd8cf 83*) pldlflags=''
d96ebe2e 84 ;;
ecfc5424 85esac
86
a0d0e21e 87: Prepare dependency lists for Makefile.
88dynamic_list=' '
89for f in $dynamic_ext; do
90 : the dependency named here will never exist
ecfc5424 91 base=`echo "$f" | sed 's/.*\///'`
75f92628 92 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
a0d0e21e 93done
94
95static_list=' '
a0d0e21e 96for f in $static_ext; do
97 base=`echo "$f" | sed 's/.*\///'`
cd4d8a96 98 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
a0d0e21e 99done
100
4318d5a0 101nonxs_list=' '
102for f in $nonxs_ext; do
103 base=`echo "$f" | sed 's/.*\///'`
104 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
105done
106
2304df62 107echo "Extracting Makefile (with variable substitutions)"
655635e8 108$spitshell >Makefile <<!GROK!THIS!
a0d0e21e 109# Makefile.SH
85e6fe83 110# This file is derived from Makefile.SH. Any changes made here will
111# be lost the next time you run Configure.
655635e8 112# Makefile is used to generate $firstmakefile. The only difference
113# is that $firstmakefile has the dependencies filled in at the end.
2304df62 114#
fed7345c 115#
2304df62 116# I now supply perly.c with the kits, so don't remake perly.c without byacc
117BYACC = $byacc
118CC = $cc
232e078e 119LD = $ld
16d20bd9 120
2304df62 121LDFLAGS = $ldflags
122CLDFLAGS = $ldflags
85e6fe83 123
2304df62 124SMALL = $small
125LARGE = $large $split
126mallocsrc = $mallocsrc
127mallocobj = $mallocobj
85e6fe83 128LNS = $lns
2304df62 129RMS = rm -f
85e6fe83 130ranlib = $ranlib
131
16d20bd9 132# The following are mentioned only to make metaconfig include the
133# appropriate questions in Configure. If you want to change these,
8e07c86e 134# edit config.sh instead, or specify --man1dir=/wherever on
16d20bd9 135# installman commandline.
136bin = $installbin
137scriptdir = $scriptdir
d96ebe2e 138shrpdir = $archlibexp/CORE
16d20bd9 139privlib = $installprivlib
140man1dir = $man1dir
141man1ext = $man1ext
142man3dir = $man3dir
143man3ext = $man3ext
144
85e6fe83 145# The following are used to build and install shared libraries for
146# dynamic loading.
147LDDLFLAGS = $lddlflags
3c321fdc 148SHRPLDFLAGS = $shrpldflags
85e6fe83 149CCDLFLAGS = $ccdlflags
a0d0e21e 150DLSUFFIX = .$dlext
ecfc5424 151PLDLFLAGS = $pldlflags
d96ebe2e 152LIBPERL = $libperl
d5d19f97 153LLIBPERL= $linklibperl
ecfc5424 154SHRPENV = $shrpenv
a0d0e21e 155
6ee623d5 156# The following is used to include the current directory in
157# LD_LIBRARY_PATH if you are building a shared libperl.so.
158LDLIBPTH = $ldlibpth
159
a0d0e21e 160dynamic_ext = $dynamic_list
161static_ext = $static_list
4318d5a0 162nonxs_ext = $nonxs_list
163ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
cd4d8a96 164DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
2304df62 165
166libs = $libs $cryptlib
167
909b3858 168public = perl $suidperl utilities translators
2304df62 169
170shellflags = $shellflags
171
d96ebe2e 172# This is set to MAKE=$make if your $make command doesn't
173# do it for you.
174$make_set_make
4633a7c4 175
dfe9444c 176# These variables may need to be manually set for non-Unix systems.
ccc7f9b3 177AR = $full_ar
dfe9444c 178EXE_EXT = $_exe
179LIB_EXT = $_a
180OBJ_EXT = $_o
181PATH_SEP = $p_
4633a7c4 182
183FIRSTMAKEFILE = $firstmakefile
184
185# Any special object files needed by this architecture, e.g. os2/os2.obj
186ARCHOBJS = $archobjs
187
cd4d8a96 188.SUFFIXES: .c \$(OBJ_EXT)
189
d96ebe2e 190# grrr
191SHELL = $sh
655635e8 192
28e8609d 193# how to tr(anslate) newlines
194TRNL = '$trnl'
195
2304df62 196!GROK!THIS!
197
85e6fe83 198## In the following dollars and backticks do not need the extra backslash.
2304df62 199$spitshell >>Makefile <<'!NO!SUBS!'
200
d96ebe2e 201CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
2304df62 202
fed7345c 203private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
2304df62 204
4633a7c4 205# Files to be built with variable substitution before miniperl
206# is available.
207sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
208 makedir.SH perl_exp.SH writemain.SH
209
210shextract = Makefile cflags config.h makeaperl makedepend \
655635e8 211 makedir perl.exp writemain
4633a7c4 212
213# Files to be built with variable substitution after miniperl is
214# available. Dependencies handled manually below (for now).
2304df62 215
efb12ca0 216pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
217 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
4633a7c4 218
efb12ca0 219plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
220 pod/pod2usage pod/podchecker pod/podselect
4633a7c4 221
222addedbyconf = UU $(shextract) $(plextract) pstruct
2304df62 223
fed7345c 224h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
a0d0e21e 225h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
2304df62 226h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
219f41b1 227h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
e8edd1e6 228h5 = utf8.h warning.h
33b839e2 229h = $(h1) $(h2) $(h3) $(h4) $(h5)
2304df62 230
e8edd1e6 231c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
a0ed51b3 232c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
760ac839 233c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c globals.c perlio.c
2304df62 234
a0d0e21e 235c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
2304df62 236
e8edd1e6 237obj1 = $(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)
cd4d8a96 238obj2 = 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)
a0ed51b3 239obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT)
655635e8 240
4633a7c4 241obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
2304df62 242
a0d0e21e 243# Once perl has been Configure'd and built ok you build different
244# perl variants (Debugging, Embedded, Multiplicity etc) by saying:
d96ebe2e 245# make clean; make LIBPERL=libperl<type>.a
a0d0e21e 246# where <type> is some combination of 'd' and(or) 'e' or 'm'.
247# See cflags to understand how this works.
248#
d96ebe2e 249# This mechanism is getting clunky and might not even work any more.
250# EMBEDDING is on by default, and MULTIPLICITY doesn't work.
251#
a0d0e21e 252
2304df62 253lintflags = -hbvxac
254
cd4d8a96 255.c$(OBJ_EXT):
d96ebe2e 256 $(CCCMD) $(PLDLFLAGS) $*.c
2304df62 257
4318d5a0 258all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext) $(nonxs_ext)
248e23d9 259 @echo " ";
260 @echo " Everything is up to date. 'make test' to run test suite."
909b3858 261
6ee623d5 262compile: all
263 echo "testing compilation" > testcompile;
264 cd utils; $(MAKE) compile;
265 cd x2p; $(MAKE) compile;
266 cd pod; $(MAKE) compile;
267
909b3858 268translators: miniperl lib/Config.pm FORCE
6ee623d5 269 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
8e07c86e 270
909b3858 271utilities: miniperl lib/Config.pm FORCE
6ee623d5 272 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
909b3858 273
274
16d20bd9 275# This is now done by installman only if you actually want the man pages.
276# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
85e6fe83 277
278# Phony target to force checking subdirectories.
e50aee73 279# Apparently some makes require an action for the FORCE target.
85e6fe83 280FORCE:
4633a7c4 281 @sh -c true
85e6fe83 282
cd4d8a96 283miniperlmain$(OBJ_EXT): miniperlmain.c
d96ebe2e 284 $(CCCMD) $(PLDLFLAGS) $*.c
ecfc5424 285
655635e8 286perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
e8827f64 287 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
288 sh mv-if-diff writemain.tmp perlmain.c
85e6fe83 289
cd4d8a96 290perlmain$(OBJ_EXT): perlmain.c
d96ebe2e 291 $(CCCMD) $(PLDLFLAGS) $*.c
85e6fe83 292
a0d0e21e 293# The file ext.libs is a list of libraries that must be linked in
294# for static extensions, e.g. -lm -lgdbm, etc. The individual
295# static extension Makefile's add to it.
fed7345c 296ext.libs: $(static_ext)
a0d0e21e 297 -@test -f ext.libs || touch ext.libs
85e6fe83 298
ecfc5424 299!NO!SUBS!
599a829f 300
d96ebe2e 301# How to build libperl. This is still rather convoluted.
599a829f 302# Load up custom Makefile.SH fragment for shared loading and executables:
8736538c 303case "$osname" in
304cygwin*)
305 Makefile_s="cygwin32/Makefile.SHs"
306 ;;
307*)
308 Makefile_s="$osname/Makefile.SHs"
309 ;;
310esac
311
312if test -r $Makefile_s ; then
313 . $Makefile_s
d96ebe2e 314 $spitshell >>Makefile <<!GROK!THIS!
cd4d8a96 315
8736538c 316Makefile: $Makefile_s
cd4d8a96 317!GROK!THIS!
318else
f0efd8cf 319 $spitshell >>Makefile <<'!NO!SUBS!'
9c9e9f08 320$(LIBPERL): $& perl$(OBJ_EXT) $(obj)
321!NO!SUBS!
d96ebe2e 322 case "$useshrplib" in
323 true)
324 $spitshell >>Makefile <<'!NO!SUBS!'
3c321fdc 325 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
326!NO!SUBS!
327 case "$osname" in
328 aix)
329 $spitshell >>Makefile <<'!NO!SUBS!'
28e8609d 330 rm -f libperl$(OBJ_EXT)
3c321fdc 331 mv $@ libperl$(OBJ_EXT)
332 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
ecfc5424 333!NO!SUBS!
3c321fdc 334 ;;
335 esac
d96ebe2e 336 ;;
337 *)
338 $spitshell >>Makefile <<'!NO!SUBS!'
339 rm -f $(LIBPERL)
340 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
341 @$(ranlib) $(LIBPERL)
655635e8 342!NO!SUBS!
d96ebe2e 343 ;;
344 esac
599a829f 345 $spitshell >>Makefile <<'!NO!SUBS!'
346
347# How to build executables.
348
349# The $& notation tells Sequent machines that it can do a parallel make,
350# and is harmless otherwise.
351# The miniperl -w -MExporter line is a basic cheap test to catch errors
352# before make goes on to run preplibrary and then MakeMaker on extensions.
353# This is very handy because later errors are often caused by miniperl
354# build problems but that's not obvious to the novice.
355# The Module used here must not depend on Config or any extensions.
356
357miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL)
6ee623d5 358 $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(LLIBPERL) $(libs)
bfc6b1eb 359 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest
599a829f 360
361perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
6ee623d5 362 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 363
364pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
6ee623d5 365 $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 366
dbadb36a 367purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
6ee623d5 368 $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
dbadb36a 369
599a829f 370quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
6ee623d5 371 $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 372
373# This version, if specified in Configure, does ONLY those scripts which need
374# set-id emulation. Suidperl must be setuid root. It contains the "taint"
375# checks as well as the special code to validate that the script in question
376# has been invoked correctly.
377
d96ebe2e 378suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
6ee623d5 379 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 380
599a829f 381!NO!SUBS!
382
383fi
384
385$spitshell >>Makefile <<'!NO!SUBS!'
386
cd4d8a96 387sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
2304df62 388 $(RMS) sperl.c
85e6fe83 389 $(LNS) perl.c sperl.c
d96ebe2e 390 $(CCCMD) -DIAMSUID sperl.c
2304df62 391 $(RMS) sperl.c
392
fec02dd3 393# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
394# test -d lib/auto || mkdir lib/auto
395#
4633a7c4 396preplibrary: miniperl lib/Config.pm $(plextract)
cd4d8a96 397 @sh ./makedir lib/auto
a0d0e21e 398 @echo " AutoSplitting perl library"
bfc6b1eb 399 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
a0d0e21e 400 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
2304df62 401
75f92628 402# Take care to avoid modifying lib/Config.pm without reason
fb73857a 403# (If trying to create a new port and having problems with the configpm script,
404# try 'make minitest' and/or commenting out the tests at the end of configpm.)
655635e8 405lib/Config.pm: config.sh miniperl configpm
e8827f64 406 $(LDLIBPTH) ./miniperl configpm configpm.tmp
407 sh mv-if-diff configpm.tmp $@
2304df62 408
37120919 409lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
e8827f64 410 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
411 sh mv-if-diff minimod.tmp $@
fed7345c 412
56953603 413lib/re.pm: ext/re/re.pm
ceb0239c 414 rm -f $@
56953603 415 cat ext/re/re.pm > $@
416
417$(plextract): miniperl lib/Config.pm lib/re.pm
474d7bc5 418 $(LDLIBPTH) ./miniperl -Ilib $@.PL
6ee623d5 419
16d20bd9 420install: all install.perl install.man
421
cd4d8a96 422install.perl: all installperl
6ee623d5 423 if [ -n "$(COMPILE)" ]; \
424 then \
425 cd utils; $(MAKE) compile; \
426 cd ../x2p; $(MAKE) compile; \
427 cd ../pod; $(MAKE) compile; \
83673e1f 428 else :; \
6ee623d5 429 fi
430 $(LDLIBPTH) ./perl installperl
a0d0e21e 431
cd4d8a96 432install.man: all installman
6ee623d5 433 $(LDLIBPTH) ./perl installman
16d20bd9 434
84902520 435# XXX Experimental. Hardwired values, but useful for testing.
436# Eventually Configure could ask for some of these values.
437install.html: all installhtml
6ee623d5 438 $(LDLIBPTH) ./perl installhtml \
84902520 439 --podroot=. --podpath=. --recurse \
440 --htmldir=$(privlib)/html \
441 --htmlroot=$(privlib)/html \
442 --splithead=pod/perlipc \
443 --splititem=pod/perlfunc \
444 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
445 --verbose
446
16d20bd9 447
a0d0e21e 448# I now supply perly.c with the kits, so the following section is
56febc5e 449# used only if you force byacc to run by saying
450# make run_byacc
451# Since we patch up the byacc output, the perly.fixer script needs
452# to run with precisely the same version of byacc as I use. You
453# normally shouldn't remake perly.[ch].
454
232e078e 455run_byacc: FORCE
28757baa 456 @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
56febc5e 457 $(BYACC) -d perly.y
fb73857a 458 chmod 664 perly.c
56febc5e 459 sh $(shellflags) ./perly.fixer y.tab.c perly.c
55497cff 460 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
461 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
ebb99254 462 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
55497cff 463 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
fb73857a 464 chmod 664 vms/perly_c.vms vms/perly_h.vms
465 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
56febc5e 466
467# We don't want to regenerate perly.c and perly.h, but they might
468# appear out-of-date after a patch is applied or a new distribution is
469# made.
470perly.c: perly.y
cd4d8a96 471 -@sh -c true
56febc5e 472
473perly.h: perly.y
cd4d8a96 474 -@sh -c true
a0d0e21e 475
bd656b61 476# No compat3.sym here since and including the 5.004_50.
e4d5a464 477# No interp.sym since 5.005_03.
22c35a8c 478SYM = global.sym globvar.sym perlio.sym pp.sym
419eaf7b 479
22c35a8c 480SYMH = perlvars.h intrpvar.h thrdvar.h
419eaf7b 481
a8581515 482# The following files are generated automatically
e50aee73 483# keywords.h: keywords.pl
484# opcode.h: opcode.pl
22c35a8c 485# pp_proto.h: opcode.pl
486# pp.sym: opcode.pl
487# embed.h: embed.pl [* needs pp.sym generated by opcode.pl! *]
488# embedvar.h: embed.pl [* needs pp.sym generated by opcode.pl! *]
e8edd1e6 489# ext/ByteLoader/byterun.h: bytecode.pl
490# ext/ByteLoader/byterun.c: bytecode.pl
491# ext/B/Asmdata.pm: bytecode.pl
d09b2d29 492# regnodes.h: regcomp.pl
599cee73 493# warning.h lib/warning.pm: warning.pl
e50aee73 494# The correct versions should be already supplied with the perl kit,
495# in case you don't have perl available.
496# To force them to run, type
497# make regen_headers
498regen_headers: FORCE
499 perl keywords.pl
500 perl opcode.pl
501 perl embed.pl
a8581515 502 perl bytecode.pl
d09b2d29 503 perl regcomp.pl
599cee73 504 perl warning.pl
8e07c86e 505
a0d0e21e 506# Extensions:
4318d5a0 507# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
508# automatically get built. There should ordinarily be no need to change
509# any of this part of makefile.
a0d0e21e 510#
511# The dummy dependency is a place holder in case $(dynamic_ext) or
512# $(static_ext) is empty.
513#
514# DynaLoader may be needed for extensions that use Makefile.PL.
515
516$(DYNALOADER): miniperl preplibrary FORCE
6ee623d5 517 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 518
519d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
6ee623d5 520 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 521
522s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
6ee623d5 523 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
2304df62 524
4318d5a0 525n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE
526 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
527
17b893d8 528clean: _tidy _mopup
70af249b 529
530realclean: _cleaner _mopup
4e2a5f63 531 @echo "Note that make realclean does not delete config.sh or Policy.sh"
70af249b 532
533clobber: _cleaner _mopup
4e2a5f63 534 rm -f config.sh cppstdin Policy.sh
70af249b 535
536distclean: clobber
537
538# Do not 'make _mopup' directly.
539_mopup:
cd4d8a96 540 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
fed7345c 541 rm -f perl.exp ext.libs
d96ebe2e 542 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1cfa4ec7 543 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
70af249b 544 rm -f perl suidperl miniperl $(LIBPERL)
545
546# Do not 'make _tidy' directly.
547_tidy:
e3f83878 548 -cd pod; $(LDLIBPTH) $(MAKE) clean
549 -cd utils; $(LDLIBPTH) $(MAKE) clean
550 -cd x2p; $(LDLIBPTH) $(MAKE) clean
4318d5a0 551 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 552 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
a0d0e21e 553 done
6ee623d5 554 rm -f testcompile compilelog
ff68c719 555
556# Do not 'make _cleaner' directly.
557_cleaner:
4633a7c4 558 -cd os2; rm -f Makefile
e3f83878 559 -cd pod; $(LDLIBPTH) $(MAKE) realclean
560 -cd utils; $(LDLIBPTH) $(MAKE) realclean
561 -cd x2p; $(LDLIBPTH) $(MAKE) realclean
4318d5a0 562 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 563 $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
a0d0e21e 564 done
8544a514 565 rm -f *.orig */*.orig *~ */*~ core core.perl.*.? core.miniperl.*.? perl.core miniperl.core t/core t/core.perl.*.? t/perl.core t/tmp???? t/c t/perl so_locations t/nonexistent1
a0d0e21e 566 rm -rf $(addedbyconf)
cd4d8a96 567 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
fed7345c 568 rm -f $(private)
a0d0e21e 569 rm -rf lib/auto
181ea953 570 rm -f lib/.exists lib/*/.exists
16d20bd9 571 rm -f h2ph.man pstruct
a0d0e21e 572 rm -rf .config
6ee623d5 573 rm -f testcompile compilelog
ecfc5424 574
2304df62 575# The following lint has practically everything turned on. Unfortunately,
576# you have to wade through a lot of mumbo jumbo that can't be suppressed.
577# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
578# for that spot.
579
580lint: perly.c $(c)
581 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
582
fb73857a 583# Need to unset during recursion to go out of loop.
584# The README below ensures that the dependency list is never empty and
585# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
cd4d8a96 586
84902520 587MAKEDEPEND = Makefile makedepend
cd4d8a96 588
fb73857a 589$(FIRSTMAKEFILE): README $(MAKEDEPEND)
cd4d8a96 590 $(MAKE) depend MAKEDEPEND=
a0d0e21e 591
599a829f 592config.h: config_h.SH config.sh
655635e8 593 $(SHELL) config_h.SH
594
419eaf7b 595# This is an AIXism.
596perl.exp: perl_exp.SH config.sh $(SYM) $(SYMH)
655635e8 597 $(SHELL) perl_exp.SH
75f92628 598
a0d0e21e 599# When done, touch perlmain.c so that it doesn't get remade each time.
2304df62 600depend: makedepend
fb73857a 601 sh ./makedepend MAKE=$(MAKE)
a0d0e21e 602 - test -s perlmain.c && touch perlmain.c
2304df62 603 cd x2p; $(MAKE) depend
604
cd4d8a96 605# Cannot postpone this until $firstmakefile is ready ;-)
606makedepend: makedepend.SH config.sh
607 sh ./makedepend.SH
608
d6a255e6 609# Cannot delegate rebuilding of t/perl to make to allow interlaced
610# test and minitest
611test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
3e3baf6d 612 cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
613
994e9bc0 614# Second branch is for testing without a tty or controling terminal.
615# See t/op/stat.t
3e3baf6d 616test check: test-prep
994e9bc0 617 if (true </dev/tty) >/dev/null 2>&1; then \
618 cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
619 else \
620 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
621 fi
3e3baf6d 622
a0ed51b3 623utest ucheck: test-prep
994e9bc0 624 if (true </dev/tty) >/dev/null 2>&1; then \
625 cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
626 else \
627 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
628 fi
a0ed51b3 629
3e3baf6d 630# For testing without a tty or controling terminal. See t/op/stat.t
631test-notty: test-prep
6ee623d5 632 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
2304df62 633
d96ebe2e 634# Can't depend on lib/Config.pm because that might be where miniperl
635# is crashing.
a35c6d74 636minitest: miniperl lib/re.pm
d96ebe2e 637 @echo "You may see some irrelevant test failures if you have been unable"
638 @echo "to build lib/Config.pm."
cd4d8a96 639 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
6ee623d5 640 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
16d20bd9 641
fb73857a 642# Handy way to run perlbug -ok without having to install and run the
84902520 643# installed perlbug. We don't re-run the tests here - we trust the user.
fb73857a 644# Please *don't* use this unless all tests pass.
1d2dff63 645# If you want to report test failures, use "make nok" instead.
188cd53f 646ok: utilities
39fa2da7 647 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
84902520 648
105f9295 649okfile: utilities
39fa2da7 650 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
105f9295 651
1d2dff63 652nok: utilities
39fa2da7 653 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1d2dff63 654
85e6fe83 655clist: $(c)
28e8609d 656 echo $(c) | tr ' ' $(TRNL) >.clist
2304df62 657
85e6fe83 658hlist: $(h)
28e8609d 659 echo $(h) | tr ' ' $(TRNL) >.hlist
2304df62 660
85e6fe83 661shlist: $(sh)
28e8609d 662 echo $(sh) | tr ' ' $(TRNL) >.shlist
2304df62 663
4633a7c4 664pllist: $(pl)
28e8609d 665 echo $(pl) | tr ' ' $(TRNL) >.pllist
4633a7c4 666
599a829f 667Makefile: Makefile.SH ./config.sh
760ac839 668 $(SHELL) Makefile.SH
669
599a829f 670distcheck: FORCE
760ac839 671 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
672
771c4874 673elc: emacs/cperl-mode.elc
674
675emacs/cperl-mode.elc: emacs/cperl-mode.el
676 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
677
d6a255e6 678etags: TAGS
679
680TAGS: emacs/cperl-mode.elc
3ee700d1 681 sh emacs/ptags
01e22528 682
d6a255e6 683ctags: tags
684
685# Let's hope make will not go into an infinite loop on case-unsensitive systems
686# This may also fail if . is in the head of the path, since perl will
687# require -Ilib
688tags: TAGS
689 perl emacs/e2ctags.pl TAGS > tags
3ee700d1 690
2304df62 691# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
692# If this runs make out of memory, delete /usr/include lines.
693!NO!SUBS!
694
85e6fe83 695$eunicefix Makefile
2304df62 696case `pwd` in
697*SH)
85e6fe83 698 $rm -f ../Makefile
cd4d8a96 699 $ln Makefile ../Makefile
2304df62 700 ;;
701esac
cd4d8a96 702$rm -f $firstmakefile
5ff3f7a4 703
704# Now do any special processing required before building.
705
706case "$ebcdic" in
707$define)
708 xxx=''
709 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
7a66b286 710case "$osname" in
25e9a2e3 711os390|posix-bc)
5ff3f7a4 712 rm -f y.tab.c y.tab.h
e9d08790 713 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
5ff3f7a4 714 yacc -d perly.y >/dev/null 2>&1
715 if cmp -s y.tab.c perly.c; then
716 rm -f y.tab.c
717 else
718 echo "perly.y -> perly.c" >&2
719 mv -f y.tab.c perly.c
720 chmod u+w perly.c
c8dba6f3 721 sed -e '/^#include "perl\.h"/a\
722\
723#define yydebug PL_yydebug\
724#define yynerrs PL_yynerrs\
725#define yyerrflag PL_yyerrflag\
726#define yychar PL_yychar\
c8dba6f3 727#define yyval PL_yyval\
728#define yylval PL_yylval' \
729 -e '/YYSTYPE *yyval;/D' \
730 -e '/YYSTYPE *yylval;/D' \
731 -e '/int yychar,/,/yynerrs;/D' \
732 -e 's/int yydebug = 0;/yydebug = 0;/' \
733 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
734 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
5ff3f7a4 735 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
736 xxx="$xxx perly.c"
737 fi
738 if cmp -s y.tab.h perly.h; then
739 rm -f y.tab.h
740 else
741 echo "perly.y -> perly.h" >&2
742 mv -f y.tab.h perly.h
743 xxx="$xxx perly.h"
744 fi
e9d08790 745 if cd x2p
5ff3f7a4 746 then
e9d08790 747 rm -f y.tab.c y.tab.h
5928ee40 748 case "$osname" in
749 posix-bc)
750 # we are using two different yaccs in BS2000 Posix!
751 byacc a2p.y >/dev/null 2>&1
752 ;;
753 *) # e.g. os390
754 yacc a2p.y >/dev/null 2>&1
755 ;;
756 esac
e9d08790 757 if cmp -s y.tab.c a2p.c
758 then
759 rm -f y.tab.c
760 else
761 echo "a2p.y -> a2p.c" >&2
762 mv -f y.tab.c a2p.c
763 chmod u+w a2p.c
764 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
765 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
766 xxx="$xxx a2p.c"
767 fi
768 # In case somebody yacc -d:ed the a2p.y.
769 if test -f y.tab.h
770 then
771 if cmp -s y.tab.h a2p.h
772 then
773 rm -f y.tab.h
774 else
775 echo "a2p.h -> a2p.h" >&2
776 mv -f y.tab.h a2p.h
777 xxx="$xxx a2p.h"
778 fi
779 fi
780 cd ..
5ff3f7a4 781 fi
7a66b286 782 ;;
783vmesa)
784 # Do nothing in VM/ESA.
785 ;;
aa34f189 786*)
e9d08790 787 echo "'$osname' is an EBCDIC system I don't know that well." >&4
aa34f189 788 ;;
fe572743 789esac
5ff3f7a4 790 case "$xxx" in
791 '') echo "No parser files were regenerated. That's okay." >&2 ;;
792 esac
793 ;;
794esac
795