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