This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make the ExtUtils-Install tests parallelisable
[perl5.git] / Makefile.SH
CommitLineData
1f00b0d6
S
1#!/bin/sh
2
937aac54 3# quote() - Creates a shell literal
6bc4329f 4# Usage: echo "...` quote "..." `..."
937aac54
EB
5quote() {
6 case "$1" in
7 '') echo "''" ;;
8 *) echo "$1" | sed 's/\([^a-zA-Z0-9.:_\-\/]\)/\\\1/g' ;;
9 esac
10}
11
a02608de 12case $PERL_CONFIG_SH in
2304df62 13'')
66b99216
JH
14 if test -f config.sh
15 then TOP=.
2304df62
AD
16 else
17 echo "Can't find config.sh."; exit 1
18 fi
19 . $TOP/config.sh
20 ;;
21esac
761ee4e8 22
3c32af27 23Makefile=Makefile
5a20539c 24
2304df62
AD
25: This forces SH files to create target in same directory as SH file.
26: This is so that make depend always knows where to find SH derivatives.
27case "$0" in
28*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
29esac
30
6bc4329f 31pwd="`pwd`"
d5d19f97 32linklibperl='$(LIBPERL)'
fe5460cc 33linklibperl_nonshr=''
3c321fdc 34shrpldflags='$(LDDLFLAGS)'
6ee623d5 35ldlibpth=''
ac9901e0 36DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
bf799c64 37DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
d96ebe2e 38case "$useshrplib" in
39true)
f4db5405 40 # Prefix all runs of 'miniperl' and 'perl' with
5cf1d1f1 41 # $ldlibpth so that ./perl finds *this* shared libperl.
c1b49bc0 42 case "$LD_LIBRARY_PATH" in
6bc4329f
EB
43 '') ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;;
44 *) ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;;
c1b49bc0 45 esac
6ee623d5 46
d5d19f97 47 pldlflags="$cccdlflags"
07f3cc2a 48 static_ldflags=''
d96ebe2e 49 case "${osname}${osvers}" in
50 next4*)
3c321fdc 51 ld=libtool
52 lddlflags="-dynamic -undefined warning -framework System \
53 -compatibility_version 1 -current_version $patchlevel \
54 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
6ee623d5 55 ;;
7eb35c03 56 darwin*)
f556e5b9 57 shrpldflags="${ldflags} -dynamiclib \
c1e7a127
W
58 -compatibility_version \
59 ${api_revision}.${api_version}.${api_subversion} \
f556e5b9 60 -current_version \
c1e7a127 61 ${revision}.${patchlevel}.${subversion} \
f556e5b9
JH
62 -install_name \$(shrpdir)/\$@"
63 ;;
5cf1d1f1 64 cygwin*)
5f9145a3
RU
65 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
66 linklibperl="-L. -lperl"
8736538c 67 ;;
73d40b3e 68 sunos*)
d5d19f97
UP
69 linklibperl="-lperl"
70 ;;
a0a23c6b 71 netbsd*|freebsd[234]*|openbsd*|dragonfly*|bitrig*)
099685bc
JH
72 linklibperl="-L. -lperl"
73 ;;
0c52c6a9
TV
74 interix*)
75 linklibperl="-L. -lperl"
76 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
77 ;;
3c321fdc 78 aix*)
21efc957
RT
79 case "$cc" in
80 gcc*)
81 shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
82 case "$osvers" in
83 3*) shrpldflags="$shrpldflags -e _nostart"
84 ;;
85 *) shrpldflags="$shrpldflags -Wl,-bnoentry"
86 ;;
87 esac
88 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
89 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
fe5460cc 90 linklibperl_nonshr='-lperl_nonshr'
1553ab04 91 ;;
21efc957
RT
92 *)
93 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
94 case "$osvers" in
95 3*) shrpldflags="$shrpldflags -e _nostart"
96 ;;
97 *) shrpldflags="$shrpldflags -b noentry"
98 ;;
99 esac
100 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
101 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
fe5460cc 102 linklibperl_nonshr='-lperl_nonshr'
1553ab04
TB
103 ;;
104 esac
3c321fdc 105 ;;
1c7d1a19
GS
106 hpux*)
107 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
46193409 108 ;;
ac9901e0 109 os390*)
4144573e 110 shrpldflags='-W l,XPLINK,dll'
ac9901e0
PP
111 linklibperl='libperl.x'
112 DPERL_EXTERNAL_GLOB=''
113 ;;
655635e8 114 esac
5cf1d1f1
JH
115 case "$ldlibpthname" in
116 '') ;;
117 *)
118 case "$osname" in
119 os2)
120 ldlibpth=''
121 ;;
5cf1d1f1 122 *)
937aac54
EB
123 eval "ldlibpthval=\"\$$ldlibpthname\""
124
125 case "$ldlibpthval" in
6bc4329f
EB
126 '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;;
127 *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;;
937aac54
EB
128 esac
129
5cf1d1f1
JH
130 ;;
131 esac
937aac54 132
5cf1d1f1
JH
133 ;;
134 esac
ecfc5424 135
9b9c6f34
AE
136 case "$osname" in
137 linux)
830717a7
AD
138 # If there is a pre-existing $libperl from a previous
139 # installation, Linux needs to use LD_PRELOAD to
140 # override the LD_LIBRARY_PATH setting. See the
141 # INSTALL file, under "Building a shared perl library".
142 # If there is no pre-existing $libperl, we don't need
143 # to do anything further.
144 if test -f $archlib/CORE/$libperl; then
68e8d60a 145 rm -f preload
d0ae58a5 146 cat <<'EOT' > preload
fde91635
JH
147#! /bin/sh
148lib=$1
149shift
150test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
151exec "$@"
152EOT
9b9c6f34
AE
153 chmod 755 preload
154 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
830717a7
AD
155 fi
156 ;;
9b9c6f34
AE
157 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
158 ;;
60d79001 159 esac
9b9c6f34 160
60d79001 161 ;;
9b9c6f34
AE
162
163*) pldlflags=''
07f3cc2a 164 static_ldflags='CCCDLFLAGS='
b1f5ad7d
JH
165 ;;
166esac
167
de4c0096
TC
168: is Cwd static or dynamic
169static_cwd='define'
04718b47 170list_util_dep='$(PERL_EXE)'
de4c0096
TC
171for f in $dynamic_ext; do
172 case $f in
173 Cwd) static_cwd='undef' ;;
04718b47 174 List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext
de4c0096
TC
175 esac
176done
177
a0d0e21e
LW
178: Prepare dependency lists for Makefile.
179dynamic_list=' '
ec81ed5d 180dynamic_ext_re="lib/auto/re/re.$dlext"
1179df5f 181extra_dep='
635c6126 182ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
1179df5f 183'
a0d0e21e
LW
184for f in $dynamic_ext; do
185 : the dependency named here will never exist
ecfc5424 186 base=`echo "$f" | sed 's/.*\///'`
9f3ef600
NC
187 this_target="lib/auto/$f/$base.$dlext"
188 dynamic_list="$dynamic_list $this_target"
189
190 : Parallel makes reveal that we have some interdependencies
191 case $f in
90e91dd8 192 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
04718b47 193$this_target: $list_util_dep" ;;
9f3ef600
NC
194 Unicode/Normalize) extra_dep="$extra_dep
195$this_target: uni.data" ;;
196 esac
a0d0e21e
LW
197done
198
199static_list=' '
a0d0e21e
LW
200for f in $static_ext; do
201 base=`echo "$f" | sed 's/.*\///'`
cd4d8a96 202 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
54f7170d
AD
203 : Parallel makes reveal that we have some interdependencies
204 this_target="lib/auto/$f/$base\$(LIB_EXT)"
205 case $f in
206 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
207$this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
208 Unicode/Normalize) extra_dep="$extra_dep
209$this_target: uni.data" ;;
210 esac
a0d0e21e
LW
211done
212
4318d5a0
GB
213nonxs_list=' '
214for f in $nonxs_ext; do
6c0ec79a 215 p=`echo "$f" | tr / -`
a193a2db 216 for d in ext dist cpan; do
321c3589
NC
217 if test -d $d/$p; then
218 nonxs_list="$nonxs_list $d/$p/pm_to_blib"
219 fi
220 done
4318d5a0
GB
221done
222
5ac1e9b2
AA
223dtrace_h=''
224dtrace_o=''
3d450a5d 225minidtrace_o=''
5ac1e9b2
AA
226case "$usedtrace" in
227define|true)
228 dtrace_h='perldtrace.h'
229 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
3d450a5d
DL
230 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)' \
231 && minidtrace_o='miniperldtrace$(OBJ_EXT)'
5ac1e9b2
AA
232 ;;
233esac
234
5a20539c
VK
235echo "Extracting $Makefile (with variable substitutions)"
236$spitshell >$Makefile <<!GROK!THIS!
237# $Makefile
85e6fe83
LW
238# This file is derived from Makefile.SH. Any changes made here will
239# be lost the next time you run Configure.
655635e8 240# Makefile is used to generate $firstmakefile. The only difference
241# is that $firstmakefile has the dependencies filled in at the end.
0de566d7 242
2304df62 243CC = $cc
232e078e 244LD = $ld
16d20bd9 245
2304df62
AD
246LDFLAGS = $ldflags
247CLDFLAGS = $ldflags
85e6fe83 248
2304df62
AD
249mallocsrc = $mallocsrc
250mallocobj = $mallocobj
00e74f14
NC
251madlysrc = $madlysrc
252madlyobj = $madlyobj
85e6fe83 253LNS = $lns
4c901d04
JH
254# NOTE: some systems don't grok "cp -f". XXX Configure test needed?
255CPS = $cp
2304df62 256RMS = rm -f
85e6fe83
LW
257ranlib = $ranlib
258
16d20bd9
AD
259# The following are mentioned only to make metaconfig include the
260# appropriate questions in Configure. If you want to change these,
8e07c86e 261# edit config.sh instead, or specify --man1dir=/wherever on
16d20bd9
AD
262# installman commandline.
263bin = $installbin
264scriptdir = $scriptdir
d96ebe2e 265shrpdir = $archlibexp/CORE
16d20bd9
AD
266privlib = $installprivlib
267man1dir = $man1dir
268man1ext = $man1ext
269man3dir = $man3dir
270man3ext = $man3ext
271
85e6fe83
LW
272# The following are used to build and install shared libraries for
273# dynamic loading.
274LDDLFLAGS = $lddlflags
3c321fdc 275SHRPLDFLAGS = $shrpldflags
85e6fe83 276CCDLFLAGS = $ccdlflags
a0d0e21e 277DLSUFFIX = .$dlext
ecfc5424 278PLDLFLAGS = $pldlflags
d96ebe2e 279LIBPERL = $libperl
d5d19f97 280LLIBPERL= $linklibperl
fe5460cc 281LLIBPERL_NONSHR= $linklibperl_nonshr
ecfc5424 282SHRPENV = $shrpenv
a0d0e21e 283
94c41b70
AD
284# Static targets are ordinarily built without CCCDLFLAGS. However,
285# if building a shared libperl.so that might later be linked into
286# another application, then it might be appropriate to also build static
287# extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
07f3cc2a
NC
288# for GNU cc).
289STATIC_LDFLAGS = $static_ldflags
94c41b70 290
6ee623d5 291# The following is used to include the current directory in
5cf1d1f1 292# the dynamic loader path you are building a shared libperl.
6ee623d5
GS
293LDLIBPTH = $ldlibpth
294
cef6ea9d 295# Sometimes running an executable is an adventure.
6aafa456 296RUN =
cef6ea9d 297
b98f6b80
JR
298# When cross-compiling we want to use a (mini)perl built for the host, not the target
299HOST_PERL = $hostperl
300HOST_GENERATE = $hostgenerate
9094a4e8 301SYSTEM_PERL = $perl
b98f6b80 302
5a20539c
VK
303# These variables may need to be manually set for non-Unix systems.
304AR = $full_ar
cf9c4992 305HOST_EXE_EXT = $_exe
5a20539c
VK
306EXE_EXT = $_exe
307LIB_EXT = $_a
308OBJ_EXT = $_o
309PATH_SEP = $p_
310
199863e7
NC
311# Macros to invoke a copy of miniperl during the build. Targets which
312# are built using these macros should depend on \$(MINIPERL_EXE)
313MINIPERL_EXE = miniperl\$(EXE_EXT)
6aafa456 314MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
199863e7 315
9094a4e8
JR
316!GROK!THIS!
317
318case "$usecrosscompile$perl" in
319define?*)
320 $spitshell >>$Makefile <<!GROK!THIS!
34b80e25
JV
321# Macros to invoke a copy of our fully operational perl during the build.
322PERL_EXE = perl\$(EXE_EXT)
9094a4e8
JR
323RUN_PERL = \$(LDLIBPTH) \$(RUN) $perl\$(EXE_EXT)
324!GROK!THIS!
325 ;;
326*)
327 $spitshell >>$Makefile <<!GROK!THIS!
328# Macros to invoke a copy of our fully operational perl during the build.
329PERL_EXE = perl\$(EXE_EXT)
330RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib
331!GROK!THIS!
332 ;;
333esac
34b80e25 334
9094a4e8 335$spitshell >>$Makefile <<!GROK!THIS!
5fb77da4
JV
336# Macros to run our tests
337RUN_TESTS = \$(LDLIBPTH) ./runtests
34b80e25 338
a0d0e21e 339dynamic_ext = $dynamic_list
ec81ed5d 340dynamic_ext_re = $dynamic_ext_re
a0d0e21e 341static_ext = $static_list
4318d5a0
GB
342nonxs_ext = $nonxs_list
343ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
908fcb8b 344DYNALOADER = DynaLoader\$(OBJ_EXT)
2304df62 345
9c839522 346libs = $perllibs $cryptlib
2304df62 347
34b80e25 348public = \$(PERL_EXE) utilities translators
2304df62
AD
349
350shellflags = $shellflags
351
d96ebe2e 352# This is set to MAKE=$make if your $make command doesn't
353# do it for you.
354$make_set_make
4633a7c4 355
1fef16b3
JH
356# Mention $gmake here so it gets probed for by Configure.
357
cfe76a0a
JC
358!GROK!THIS!
359
360case "${osname}" in
09617314 361linux*|darwin)
cfe76a0a 362$spitshell >>$Makefile <<!GROK!THIS!
4f9287d3
NC
363# If you're going to use valgrind and it can't be invoked as plain valgrind
364# then you'll need to change this, or override it on the make command line.
c7b956bb
JC
365VALGRIND ?= valgrind
366VG_TEST ?= ./perl -e 1 2>/dev/null
4f9287d3 367
cfe76a0a
JC
368!GROK!THIS!
369 ;;
370esac
371
372$spitshell >>$Makefile <<!GROK!THIS!
5ac1e9b2
AA
373DTRACE = $dtrace
374DTRACE_H = $dtrace_h
375DTRACE_O = $dtrace_o
3d450a5d 376MINIDTRACE_O = $minidtrace_o
5ac1e9b2 377
4633a7c4
LW
378FIRSTMAKEFILE = $firstmakefile
379
380# Any special object files needed by this architecture, e.g. os2/os2.obj
381ARCHOBJS = $archobjs
382
89ada9f2 383.SUFFIXES: .c \$(OBJ_EXT) .i .s
cd4d8a96 384
d96ebe2e 385# grrr
386SHELL = $sh
655635e8 387
28e8609d
JH
388# how to tr(anslate) newlines
389TRNL = '$trnl'
390
82240bfc
JH
391OPTIMIZE = $optimize
392
3343e82c
JH
393EXTRAS = $extras
394
bf35c3f6
JH
395INSTALLPREFIXEXP = $prefix
396
d56c5707 397!GROK!THIS!
b7b35fc2 398# not used by Makefile but by installperl;
d56c5707
JH
399# mentioned here so that metaconfig picks these up
400# $installusrbinperl
401# $versiononly
b7b35fc2 402
8170cb12
JH
403case "${osname}:${osvers}" in
404darwin:*)
5a20539c 405$spitshell >>$Makefile <<EOF
8170cb12
JH
406
407# Your locales are broken (osname $osname, osvers $osvers)
408# and to avoid the numerous
409# perl: warning: Setting locale failed.
410# warnings during the build process we reset the locale variables.
411
412LC_ALL=C
413LANG=C
414LANGUAGE=C
415EOF
416 ;;
417esac
2304df62 418
85e6fe83 419## In the following dollars and backticks do not need the extra backslash.
5a20539c 420$spitshell >>$Makefile <<'!NO!SUBS!'
2304df62 421
ba0f5503 422CCCMD = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
89ada9f2 423
ba0f5503 424CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
2304df62 425
744ac0ea
NC
426CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
427CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
5a20539c
VK
428
429CONFIGPOD = lib/Config.pod
430
431CONFIGH = config.h
432!NO!SUBS!
5a20539c 433
9719c95b
NC
434SH_to_target() {
435 echo $@ | sed -e s/\\\.SH//g -e s/_/./g
436}
0ff64a71 437
6105164f 438SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH x2p/Makefile.SH'
9719c95b 439shextract=`SH_to_target $SH`
0ff64a71 440
5a20539c 441## In the following dollars and backticks do not need the extra backslash.
0ff64a71 442$spitshell >>$Makefile <<!GROK!THIS!
5a20539c 443
7b4d95f7 444private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
2304df62 445
4633a7c4
LW
446# Files to be built with variable substitution before miniperl
447# is available.
0ff64a71 448sh = $SH
4633a7c4 449
0ff64a71
NC
450shextract = $shextract
451!GROK!THIS!
452
453## In the following dollars and backticks do not need the extra backslash.
454$spitshell >>$Makefile <<'!NO!SUBS!'
4633a7c4 455
467132b9 456addedbyconf = UU $(shextract) pstruct
2304df62 457
5ad7e614 458# Unicode data files generated by mktables
3df51b85
KW
459unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
460 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
1a234f2b 461 lib/unicore/UCD.pl lib/unicore/Name.pm \
3e344d15 462 lib/unicore/Heavy.pl lib/unicore/mktables.lst
5ad7e614
NC
463
464# Directories of Unicode data files generated by mktables
465unidatadirs = lib/unicore/To lib/unicore/lib
466
5a20539c 467h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
4d3a042d 468h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
dd2155a4 469h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
219f41b1 470h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
7bbf947b 471h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
9d9177be
KW
472h6 = charclass_invlists.h
473h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
2304df62 474
e1a479c5 475c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro.c perl.c
00e74f14 476c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
26ea9e12 477c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
e2051532 478c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c
00e74f14 479c5 = $(madlysrc) $(mallocsrc)
2304df62 480
a812f6a9 481c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
2304df62 482
bf799c64 483obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
c3ea6d28 484obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT)
26ea9e12 485obj1 = $(madlyobj) $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) mro$(OBJ_EXT) keywords$(OBJ_EXT)
bf799c64 486obj2 = 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)
e2051532 487obj3 = 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) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) mathoms$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT) caretx$(OBJ_EXT)
655635e8 488
c3ea6d28 489minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
3d450a5d 490mini_obj = $(minindt_obj) $(MINIDTRACE_O)
bf799c64 491ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
5ac1e9b2 492obj = $(ndt_obj) $(DTRACE_O)
2304df62 493
10819dab 494perltoc_pod_prereqs = extra.pods pod/perl51910delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
7eb47696 495generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
9387abf8 496generated_headers = uudmap.h bitcount.h mg_data.h
344af494 497
075abff3 498lintflags = \
5f66b61c
AL
499 -b \
500 -n \
075abff3 501 -p \
075abff3
AL
502 -Ncheck=%all \
503 -Nlevel=4 \
bb263b4e
AL
504 -errchk=parentheses \
505 -errhdr=%all \
66a1b24b 506 -errfmt=src \
075abff3 507 -errtags \
5f66b61c 508 -erroff=E_ASSIGN_NARROW_CONV \
075abff3 509 -erroff=E_BAD_PTR_CAST \
5f66b61c
AL
510 -erroff=E_BAD_PTR_CAST_ALIGN \
511 -erroff=E_BAD_PTR_INT_COMBINATION \
512 -erroff=E_BAD_SIGN_EXTEND \
075abff3 513 -erroff=E_BLOCK_DECL_UNUSED \
5f66b61c 514 -erroff=E_CASE_FALLTHRU \
abcf5ada 515 -erroff=E_CONST_EXPR \
075abff3 516 -erroff=E_CONSTANT_CONDITION \
abcf5ada 517 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
5f66b61c 518 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
075abff3 519 -erroff=E_EXPR_NULL_EFFECT \
66a1b24b 520 -erroff=E_FALSE_LOGICAL_EXPR \
66a1b24b 521 -erroff=E_INCL_NUSD \
5f66b61c 522 -erroff=E_LOOP_EMPTY \
66a1b24b 523 -erroff=E_MAIN_PARAM \
5f66b61c
AL
524 -erroff=E_POINTER_TO_OBJECT \
525 -erroff=E_PTRDIFF_OVERFLOW \
526 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
527 -erroff=E_STATIC_UNUSED \
05c462c4 528 -erroff=E_TRUE_LOGICAL_EXPR
2304df62 529
abcf5ada
AL
530splintflags = \
531 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
532 -D__builtin_va_list=va_list \
533 -Dsigjmp_buf=jmp_buf \
534 -warnposix \
535 \
536 +boolint \
537 +charintliteral \
538 -fixedformalarray \
539 -mustfreefresh \
540 -nestedextern \
541 -predboolint \
542 -predboolothers \
543 -preproc \
544 -boolops \
545 -shadow \
546 -nullstate \
547 +longintegral \
548 +matchanyintegral \
549 -type \
550 \
551 +line-len 999 \
552 +weak
553
554splintfiles = $(c1)
555
e21c97b9 556.c$(OBJ_EXT):
ba0f5503
DM
557 @echo `$(CCCMD)` $(PLDLFLAGS) $*.c
558 @`$(CCCMD)` $(PLDLFLAGS) $*.c
2304df62 559
e21c97b9 560.c.i:
ba0f5503
DM
561 @echo `$(CCCMDSRC)` -E $*.c \> $*.i
562 @`$(CCCMDSRC)` -E $*.c > $*.i
89ada9f2 563
e21c97b9 564.c.s:
ba0f5503
DM
565 @echo `$(CCCMDSRC)` -S $*.c
566 @`$(CCCMDSRC)` -S $*.c
89ada9f2 567
a5addb16 568all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
51356d76
NC
569 @echo " ";
570 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
571
486cd780 572.PHONY: all translators utilities
8565263a 573
2b63e250
AD
574# Both git_version.h and lib/Config_git.pl are built
575# by make_patchnum.pl.
576git_version.h: lib/Config_git.pl
577
578lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
199863e7 579 $(MINIPERL) make_patchnum.pl
dcff826f
YO
580
581# make sure that we recompile perl.c if the git version changes
582perl$(OBJ_EXT): git_version.h
6ee623d5 583
d1309555
NC
584!NO!SUBS!
585
939767c9
AD
586# Making utilities and translators require Cwd. If we have dynamic
587# loading, we only need miniperl and Cwd.$dlext. If we have static
588# loading, we need to build perl first.
de4c0096
TC
589case "$usedl$static_cwd" in
590defineundef)
939767c9 591 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
2fea0471 592 x2p_deps="\$(MINIPERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE"
939767c9 593 ;;
de4c0096
TC
594definedefine)
595 util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
2fea0471 596 x2p_deps="\$(PERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE"
de4c0096 597 ;;
939767c9 598*) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
2fea0471 599 x2p_deps="\$(PERL_EXE) \$(CONFIGPM) x2p/$firstmakefile FORCE"
939767c9
AD
600 ;;
601esac
602
d1309555 603$spitshell >>$Makefile <<!GROK!THIS!
417de989
NC
604x2p/$firstmakefile: makedepend
605 cd x2p; \$(MAKE) depend
606
939767c9
AD
607translators: $x2p_deps
608 @echo " "; echo " Making x2p stuff"; cd x2p; \$(LDLIBPTH) \$(MAKE) all
609
3eaf6950
NC
610x2p/s2p: $x2p_deps
611 cd x2p; \$(LDLIBPTH) \$(MAKE) s2p
612
9f417383
NC
613x2p/find2perl: $x2p_deps
614 cd x2p; \$(LDLIBPTH) \$(MAKE) find2perl
615
145bbcac
NC
616utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
617 \$(MINIPERL) -Ilib utils/Makefile.PL
618
619utilities: utils/Makefile $util_deps
d1309555 620 @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
909b3858 621
d1309555 622!GROK!THIS!
939767c9 623
d1309555 624$spitshell >>$Makefile <<'!NO!SUBS!'
909b3858 625
16d20bd9
AD
626# This is now done by installman only if you actually want the man pages.
627# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
85e6fe83
LW
628
629# Phony target to force checking subdirectories.
e50aee73 630# Apparently some makes require an action for the FORCE target.
869a466c 631.PHONY: FORCE
85e6fe83 632FORCE:
4633a7c4 633 @sh -c true
aa9e9805 634!NO!SUBS!
4ba7095c 635
aa9e9805 636for file in op perl; do
6cdadb5a
NC
637 if $issymlink $file.c; then
638 $spitshell >>$Makefile <<!GROK!THIS!
639
640# We do a copy of the $file.c instead of a symlink because gcc gets huffy
641# if we have a symlink forest to another disk (it complains about too many
642# levels of symbolic links, even if we have only two)
c015c5e4 643
aa9e9805
NC
644${file}mini.c: $file.c
645 \$(RMS) ${file}mini.c
646 \$(CPS) ${file}.c ${file}mini.c
6cdadb5a
NC
647!GROK!THIS!
648 else
649 $spitshell >>$Makefile <<!GROK!THIS!
650
651${file}mini.c: $file.c
652 \$(RMS) ${file}mini.c
653 \$(LNS) ${file}.c ${file}mini.c
654!GROK!THIS!
655 fi
656
657 $spitshell >>$Makefile <<!GROK!THIS!
bd0dd1d8 658
aa9e9805 659${file}mini\$(OBJ_EXT): ${file}mini.c
ba0f5503
DM
660 echo @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
661 @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
aa9e9805
NC
662!GROK!THIS!
663done
bf799c64 664
aa9e9805 665$spitshell >>$Makefile <<'!NO!SUBS!'
bf799c64 666
9387abf8 667globals$(OBJ_EXT): $(generated_headers)
9444d213 668
6f83ef0e 669uudmap.h mg_data.h: bitcount.h
0f13ebd5 670
6f83ef0e 671generate_uudmap$(OBJ_EXT): mg_raw.h
9444d213 672
b98f6b80
JR
673!NO!SUBS!
674
1ca484ac
BF
675# If hostgerenate isn't defined, then we have to build
676# generate_uudmap and run it. This can potentially mean running
677# it on the target system if we're cross-compiling.
678# If it is defined, then we just run it locally.
679case "$hostgenerate" in
680'')
681$spitshell >>$Makefile <<!GROK!THIS!
682bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
683 $run ./generate_uudmap\$(HOST_EXE_EXT) \$(generated_headers)
684 -@for f in \$(generated_headers); do \\
685 $from \$\$f; \\
686 done
687
688!GROK!THIS!
689
690$spitshell >>$Makefile <<'!NO!SUBS!'
b98f6b80 691generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
1ca484ac 692 $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
b98f6b80
JR
693
694!NO!SUBS!
1ca484ac
BF
695;;
696*)
697$spitshell >>$Makefile <<'!NO!SUBS!'
698bitcount.h: generate_uudmap$(HOST_EXE_EXT)
699 ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
700
aa9e9805 701generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
1ca484ac
BF
702 -@rm generate_uudmap$(HOST_EXE_EXT)
703 $(LNS) $(HOST_GENERATE) generate_uudmap$(HOST_EXE_EXT)
9444d213 704
b98f6b80 705!NO!SUBS!
1ca484ac
BF
706;;
707esac
708
b98f6b80
JR
709
710$spitshell >>$Makefile <<'!NO!SUBS!'
7b4d95f7 711perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
b4999888 712 $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
85e6fe83 713
a0d0e21e
LW
714# The file ext.libs is a list of libraries that must be linked in
715# for static extensions, e.g. -lm -lgdbm, etc. The individual
716# static extension Makefile's add to it.
fed7345c 717ext.libs: $(static_ext)
a0d0e21e 718 -@test -f ext.libs || touch ext.libs
85e6fe83 719
ecfc5424 720!NO!SUBS!
599a829f 721
d96ebe2e 722# How to build libperl. This is still rather convoluted.
599a829f 723# Load up custom Makefile.SH fragment for shared loading and executables:
8736538c 724case "$osname" in
8736538c
AS
725*)
726 Makefile_s="$osname/Makefile.SHs"
727 ;;
728esac
729
549a6b10
JH
730case "$osname" in
731aix)
5a20539c 732 $spitshell >>$Makefile <<!GROK!THIS!
9c839522 733LIBS = $perllibs
5f9d9a17
ME
734# In AIX we need to change this for building Perl itself from
735# its earlier definition (which is for building external
736# extensions *after* Perl has been built and installed)
737CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
549a6b10
JH
738
739!GROK!THIS!
740 case "$useshrplib" in
741 define|true|[yY]*)
5a20539c 742 $spitshell >>$Makefile <<'!NO!SUBS!'
549a6b10
JH
743
744LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
745MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
746
a643aca6 747$(LIBPERL_NONSHR): $(obj)
549a6b10 748 $(RMS) $(LIBPERL_NONSHR)
a643aca6 749 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
549a6b10 750
bf799c64 751$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
a7089531 752 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
bf799c64 753 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
549a6b10
JH
754
755MINIPERLEXP = $(MINIPERL_NONSHR)
756
757LIBPERLEXPORT = perl.exp
758
759!NO!SUBS!
760
761 ;;
762 *)
5a20539c 763 $spitshell >>$Makefile <<'!NO!SUBS!'
199863e7 764MINIPERLEXP = $(MINIPERL_EXE)
549a6b10
JH
765
766PERLEXPORT = perl.exp
767
768!NO!SUBS!
769 ;;
770 esac
5a20539c 771 $spitshell >>$Makefile <<'!NO!SUBS!'
e6807d8a 772perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
5d4e58dc 773 ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
549a6b10
JH
774
775!NO!SUBS!
776 ;;
2c2d71f5 777os2)
5a20539c 778 $spitshell >>$Makefile <<'!NO!SUBS!'
2c2d71f5
JH
779MINIPERLEXP = miniperl
780
e6807d8a 781perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
46aae397 782 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
2c2d71f5
JH
783
784!NO!SUBS!
785 ;;
5f9145a3 786cygwin)
5a20539c 787 $spitshell >>$Makefile <<'!NO!SUBS!'
5f9145a3
RU
788cygwin.c: cygwin/cygwin.c
789 $(LNS) cygwin/cygwin.c
790
791LIBPERL_NONSHR = libperl$(LIB_EXT)
792
793$(LIBPERL_NONSHR): $(obj)
794 $(RMS) $(LIBPERL_NONSHR)
795 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
796
797!NO!SUBS!
798 ;;
549a6b10
JH
799esac
800
5f9145a3 801if test -s $Makefile_s ; then
8736538c 802 . $Makefile_s
5a20539c 803 $spitshell >>$Makefile <<!GROK!THIS!
cd4d8a96 804
8736538c 805Makefile: $Makefile_s
cd4d8a96 806!GROK!THIS!
807else
5ac1e9b2
AA
808 case "$dtrace_h" in
809 ?*)
5a20539c 810 $spitshell >>$Makefile <<'!NO!SUBS!'
12b81ca5 811# dtrace dicards const qualifiers from arguments, put them back
5ac1e9b2 812$(DTRACE_H): perldtrace.d
12b81ca5
TC
813 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
814 sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
815 $(RMS) $(DTRACE_H).in
5ac1e9b2
AA
816
817mydtrace.h: $(DTRACE_H)
818
819!NO!SUBS!
820 ;;
821 esac
822 case "$dtrace_o" in
823 ?*)
5a20539c 824 $spitshell >>$Makefile <<'!NO!SUBS!'
3d450a5d 825$(DTRACE_O): perldtrace.d $(ndt_obj)
5ac1e9b2
AA
826 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
827
c3ea6d28
TC
828$(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
829 $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
3d450a5d 830
5ac1e9b2
AA
831!NO!SUBS!
832 ;;
833 esac
5a20539c 834 $spitshell >>$Makefile <<'!NO!SUBS!'
908fcb8b 835$(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
9c9e9f08 836!NO!SUBS!
d96ebe2e 837 case "$useshrplib" in
838 true)
5a20539c 839 $spitshell >>$Makefile <<'!NO!SUBS!'
0107c41a 840 rm -f $@
908fcb8b 841 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
3c321fdc 842!NO!SUBS!
843 case "$osname" in
844 aix)
5a20539c 845 $spitshell >>$Makefile <<'!NO!SUBS!'
28e8609d 846 rm -f libperl$(OBJ_EXT)
3c321fdc 847 mv $@ libperl$(OBJ_EXT)
848 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
ecfc5424 849!NO!SUBS!
3c321fdc 850 ;;
851 esac
d96ebe2e 852 ;;
853 *)
5a20539c 854 $spitshell >>$Makefile <<'!NO!SUBS!'
d96ebe2e 855 rm -f $(LIBPERL)
908fcb8b 856 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
d96ebe2e 857 @$(ranlib) $(LIBPERL)
655635e8 858!NO!SUBS!
d96ebe2e 859 ;;
860 esac
5a20539c 861 $spitshell >>$Makefile <<'!NO!SUBS!'
599a829f
IZ
862
863# How to build executables.
864
865# The $& notation tells Sequent machines that it can do a parallel make,
866# and is harmless otherwise.
867# The miniperl -w -MExporter line is a basic cheap test to catch errors
868# before make goes on to run preplibrary and then MakeMaker on extensions.
869# This is very handy because later errors are often caused by miniperl
870# build problems but that's not obvious to the novice.
871# The Module used here must not depend on Config or any extensions.
872
cb251201
NC
873# The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
874# lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
875# miniperl to exist first permits us to
876# a) have one rule generate both miniperl and lib/buildcustomize.pl
877# (so that lib/buildcustomise.pl is always available. This simplifies things)
878# b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
879
880$(MINIPERL_EXE): lib/buildcustomize.pl
881
ecfb2188
GS
882!NO!SUBS!
883
884 case "${osname}${osvers}" in
b6c36746 885 aix*)
5a20539c 886 $spitshell >>$Makefile <<'!NO!SUBS!'
cb251201 887lib/buildcustomize.pl: $& $(mini_obj)
c3ea6d28 888 $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
6aafa456 889 $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
b78ac715 890 $(MINIPERL) -f write_buildcustomize.pl
ecfb2188
GS
891!NO!SUBS!
892 ;;
e56d2c04 893 next4*)
5a20539c 894 $spitshell >>$Makefile <<'!NO!SUBS!'
b78ac715
NC
895lib/buildcustomize.pl: $& $(mini_obj) write ldcustomize.pl
896 $(CC) -o $(MINIPERL_EXE) $(mini_obj libs)
6aafa456 897 $(LDLIBPTH) ./miniperl$(HOST _EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
b78ac715 898 $(MINIPERL) -f write_buildcustomize.pl
535d2540
JH
899!NO!SUBS!
900 ;;
cb3fc426 901 darwin*)
986530ea
JH
902 case "$osvers" in
903 [1-6].*) ;;
904 *) case "$ldflags" in
905 *"-flat_namespace"*) ;;
906 *) # to allow opmini.o to override stuff in libperl.dylib
5a20539c 907 $spitshell >>$Makefile <<!NO!SUBS!
69625aa9
JH
908NAMESPACEFLAGS = -force_flat_namespace
909!NO!SUBS!
986530ea
JH
910 ;;
911 esac
912 ;;
cb3fc426 913 esac
5a20539c 914 $spitshell >>$Makefile <<'!NO!SUBS!'
cb251201 915lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
cb3fc426 916 -@rm -f miniperl.xok
199863e7 917 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
c3ea6d28 918 $(mini_obj) $(libs)
6aafa456 919 $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
b78ac715 920 $(MINIPERL) -f write_buildcustomize.pl
cb3fc426
JH
921!NO!SUBS!
922 ;;
ecfb2188 923 *)
b98f6b80 924 if test "X$hostperl" != X; then
b2b07891
BF
925 $spitshell >>$Makefile <<!GROK!THIS!
926lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl
b98f6b80 927 -@rm -f miniperl.xok
b2b07891
BF
928 -@rm \$(MINIPERL_EXE)
929 \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
930 \$(LDLIBPTH) ./miniperl\$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
931 \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
932!GROK!THIS!
b98f6b80
JR
933 else
934 $spitshell >>$Makefile <<'!NO!SUBS!'
cb251201 935lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
93c0359c 936 -@rm -f miniperl.xok
dfef7e50 937 $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
c3ea6d28 938 $(mini_obj) $(libs)
6aafa456 939 $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
b78ac715 940 $(MINIPERL) -f write_buildcustomize.pl
ecfb2188 941!NO!SUBS!
b98f6b80 942 fi
ecfb2188
GS
943 ;;
944 esac
945
5a20539c 946 $spitshell >>$Makefile <<'!NO!SUBS!'
599a829f 947
cb251201 948$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
93c0359c 949 -@rm -f miniperl.xok
dfef7e50 950 $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 951
f946bb38
JH
952# Microperl. This is just a convenience thing if one happens to
953# build also the full Perl and therefore the real big Makefile:
f4db5405 954# usually one should manually explicitly issue the below command.
f946bb38 955
869a466c 956.PHONY: microperl
f946bb38
JH
957microperl:
958 $(MAKE) -f Makefile.micro
959
fe5460cc
RT
960!NO!SUBS!
961
599a829f
IZ
962fi
963
6d4b7d88
JH
964# Some environment have no system(), which mkpport uses.
965# Let's try running the commands with shell.
966case "${osname}" in
967catamount)
5a20539c 968$spitshell >>$Makefile <<!GROK!THIS!
6d4b7d88 969.PHONY: makeppport
199863e7 970makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
6d4b7d88 971 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
199863e7 972 (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
6d4b7d88
JH
973 done
974
975!GROK!THIS!
976;;
977*)
5a20539c 978$spitshell >>$Makefile <<'!NO!SUBS!'
6d4b7d88 979.PHONY: makeppport
199863e7 980makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
f6b3c354 981 $(MINIPERL) mkppport
6d4b7d88
JH
982
983!NO!SUBS!
984;;
985esac
986
5a20539c 987$spitshell >>$Makefile <<'!NO!SUBS!'
599a829f 988
869a466c 989.PHONY: preplibrary
7353f64c 990preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
2304df62 991
0f13ebd5
NC
992$(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
993
994$(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
199863e7 995 $(MINIPERL) configpm
2304df62 996
58fa074c 997unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
6c684aee 998
199863e7 999uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
f6b3c354 1000 $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
f86864ac
KW
1001# Commented out so always runs, mktables looks at far more files than we
1002# can in this makefile to decide if needs to run or not
1003# touch uni.data
5ad7e614 1004
f4e064af 1005# $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
7eb47696
NC
1006# But also this ensures that all extensions are built before we try to scan
1007# them, which picks up Devel::PPPort's documentation.
34b80e25 1008pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
9094a4e8 1009 $(RUN_PERL) -f pod/buildtoc -q
7eb47696 1010
0f13ebd5
NC
1011pod/perlapi.pod: pod/perlintern.pod
1012
f4e064af 1013pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
199863e7 1014 $(MINIPERL) autodoc.pl
344af494 1015
199863e7 1016pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
f6b3c354 1017 $(MINIPERL) pod/perlmodlib.PL -q
6e2c8928 1018
10819dab
TC
1019pod/perl51910delta.pod: pod/perldelta.pod
1020 $(RMS) pod/perl51910delta.pod
1021 $(LNS) perldelta.pod pod/perl51910delta.pod
8e7bc40f 1022
199863e7 1023extra.pods: $(MINIPERL_EXE)
ebbebb7c 1024 -@test ! -f extra.pods || rm -f `cat extra.pods`
72b3d9b4 1025 -@rm -f extra.pods
b4bc034f 1026 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
72b3d9b4 1027 nx=`echo $$x | sed -e "s/README\.//"`; \
e0be038f 1028 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
72b3d9b4
GS
1029 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1030 done
ebbebb7c 1031
34b80e25 1032extras.make: $(PERL_EXE)
9094a4e8 1033 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
bf35c3f6 1034
34b80e25 1035extras.test: $(PERL_EXE)
9094a4e8 1036 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
bf35c3f6 1037
34b80e25 1038extras.install: $(PERL_EXE)
9094a4e8 1039 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
bf35c3f6 1040
869a466c 1041.PHONY: install install-strip install-all install-verbose install-silent \
5e2f386f 1042 no-install install.perl install.man install.html
869a466c 1043
70eaf669
IZ
1044# Set this to an empty string to avoid an attempt of rebuild before install
1045INSTALL_DEPENDENCE = all
1046
6784814b
NC
1047no_install no-install: install-notify
1048
1049install: install-all
07f58f84
NC
1050!NO!SUBS!
1051
a9bf3e8f 1052
07f58f84
NC
1053for name in all notify silent strip verbose; do
1054 flags="--$name";
a9bf3e8f
JR
1055 if test "X$hostperl" != X; then
1056 $spitshell >>$Makefile <<EOT
1057
1058install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1059 \$(HOST_PERL) installperl --destdir=\$(DESTDIR) ${flags%--all} \$(INSTALLFLAGS) \$(STRIPFLAGS)
1060 \$(HOST_PERL) installman --destdir=\$(DESTDIR) ${flags%--all}
1061EOT
1062 else
1063 $spitshell >>$Makefile <<EOT
07f58f84
NC
1064
1065install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1066 \$(RUN_PERL) installperl --destdir=\$(DESTDIR) ${flags%--all} \$(INSTALLFLAGS) \$(STRIPFLAGS)
07f58f84
NC
1067 \$(RUN_PERL) installman --destdir=\$(DESTDIR) ${flags%--all}
1068EOT
a9bf3e8f 1069 fi
3a031125
NC
1070
1071 test $name = notify || echo ' -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '\''@ARGV&&install(@ARGV)'\'' `cat extras.lst`' >>$Makefile
07f58f84
NC
1072done
1073
a9bf3e8f
JR
1074if test "X$hostperl" != X; then
1075 $spitshell >>$Makefile <<'!NO!SUBS!'
1076install.perl: $(INSTALL_DEPENDENCE) installperl
1077 $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1078 -@test ! -s extras.lst || $(MAKE) extras.install
1079
1080install.man: all installman
1081 $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
6784814b 1082
a9bf3e8f
JR
1083# XXX Experimental. Hardwired values, but useful for testing.
1084# Eventually Configure could ask for some of these values.
1085install.html: all installhtml
1086 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1087 $(HOST_PERL) installhtml \
1088 --podroot=. --podpath=. --recurse \
1089 --htmldir=$(privlib)/html \
1090 --htmlroot=$(privlib)/html \
1091 --splithead=pod/perlipc \
1092 --splititem=pod/perlfunc \
1093 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1094 --verbose
1095!NO!SUBS!
1096else
1097 $spitshell >>$Makefile <<'!NO!SUBS!'
70eaf669 1098install.perl: $(INSTALL_DEPENDENCE) installperl
34b80e25 1099 $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
d618fe71 1100 -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
a0d0e21e 1101
b1a1e9f1 1102install.man: all installman
34b80e25 1103 $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
16d20bd9 1104
84902520
TB
1105# XXX Experimental. Hardwired values, but useful for testing.
1106# Eventually Configure could ask for some of these values.
1107install.html: all installhtml
40096396 1108 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
34b80e25 1109 $(RUN_PERL) installhtml \
84902520 1110 --podroot=. --podpath=. --recurse \
47ec63d0
RGS
1111 --htmldir=$(privlib)/html \
1112 --htmlroot=$(privlib)/html \
84902520
TB
1113 --splithead=pod/perlipc \
1114 --splititem=pod/perlfunc \
e2b41a3f 1115 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
84902520 1116 --verbose
a9bf3e8f
JR
1117!NO!SUBS!
1118fi
84902520 1119
a9bf3e8f 1120$spitshell >>$Makefile <<'!NO!SUBS!'
16d20bd9 1121
a0d0e21e 1122# I now supply perly.c with the kits, so the following section is
0de566d7
DM
1123# used only if you force bison to run by saying
1124# make regen_perly
1125# You normally shouldn't remake perly.[ch].
1126
1127.PHONY: regen_perly
1128
59c72abb 1129run_byacc run-byacc:
0de566d7
DM
1130 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1131
f05e27e5 1132# this outputs perly.h, perly.act and perly.tab
59c72abb 1133regen_perly regen-perly:
0de566d7 1134 perl regen_perly.pl
56febc5e
AD
1135
1136# We don't want to regenerate perly.c and perly.h, but they might
1137# appear out-of-date after a patch is applied or a new distribution is
1138# made.
92c28edd 1139perly.c: perly.y
b233458b
JH
1140 -@sh -c true
1141
92c28edd 1142perly.h: perly.y
b233458b
JH
1143 -@sh -c true
1144
d500e60d 1145SYM = globvar.sym perlio.sym
419eaf7b 1146
907b3e23 1147SYMH = perlvars.h intrpvar.h
419eaf7b 1148
dae78bb1
IZ
1149CHMOD_W = chmod +w
1150
a8581515 1151# The following files are generated automatically
d500e60d 1152# embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c
897d3989 1153# opcode.pl: opcode.h opnames.h pp_proto.h
c83f8f39
JH
1154# regcomp.pl: regnodes.h
1155# warnings.pl: warnings.h lib/warnings.pm
f2c01b15 1156# feature.pl: feature.h lib/feature.pm
e50aee73
AD
1157# The correct versions should be already supplied with the perl kit,
1158# in case you don't have perl available.
36bb303b 1159# To force them to be regenerated, run
9ad884cb 1160# perl regen.pl
36bb303b
NC
1161# with your existing copy of perl
1162# (make regen_headers is kept for backwards compatibility)
e1354ed6 1163
d500e60d 1164AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
69bcf1d3 1165 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
f2c01b15 1166 lib/feature.pm feature.h
e1354ed6 1167
1e2f36ef 1168.PHONY: regen_headers regen_all
869a466c 1169
95aa0565 1170regen: FORCE
9ad884cb 1171 -perl regen.pl
2caceca9 1172 -perl regen/uconfig_h.pl
8e07c86e 1173
59c72abb 1174regen_headers regen-headers: FORCE
95aa0565 1175 -perl regen.pl -v
2caceca9 1176 -perl regen/uconfig_h.pl -v
95aa0565 1177
bfc0a3e7 1178regen_meta regen-meta: META.yml META.json
de65cabd
JV
1179
1180META.yml: FORCE
9094a4e8 1181 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
bfc0a3e7
CBW
1182
1183META.json: FORCE
9094a4e8 1184 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
de65cabd
JV
1185
1186
59c72abb 1187regen_all regen-all: regen regen_meta
9fec149b 1188
1aea71db
A
1189.PHONY: manisort manicheck
1190
1191manisort: FORCE
4e86fc4b
JH
1192 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1193 perl Porting/manisort -q -o MANIFEST; sh -c true)
1aea71db
A
1194
1195manicheck: FORCE
1196 perl Porting/manicheck
1197
a0d0e21e 1198# Extensions:
4318d5a0
GB
1199# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1200# automatically get built. There should ordinarily be no need to change
1201# any of this part of makefile.
a0d0e21e
LW
1202#
1203# The dummy dependency is a place holder in case $(dynamic_ext) or
1204# $(static_ext) is empty.
1205#
1206# DynaLoader may be needed for extensions that use Makefile.PL.
1207
5e4c4c91 1208$(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
199863e7 1209 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
a0d0e21e 1210
56dba491 1211d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
199863e7 1212 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
a0d0e21e 1213
5e4c4c91 1214s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
199863e7 1215 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
2304df62 1216
5e4c4c91 1217n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
199863e7 1218 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
9f3ef600
NC
1219!NO!SUBS!
1220
5a20539c 1221$spitshell >>$Makefile <<EOF
9f3ef600
NC
1222$extra_dep
1223EOF
1224
5a20539c 1225$spitshell >>$Makefile <<'!NO!SUBS!'
4318d5a0 1226
a774dfe6
RSG
1227.PHONY: printconfig
1228printconfig:
9094a4e8 1229 @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
a774dfe6 1230
869a466c
JH
1231.PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1232 realclean _realcleaner clobber _clobber \
6e2cec71 1233 distclean veryclean _verycleaner
869a466c 1234
6e2cec71 1235clean: _tidy _mopup
70af249b 1236
6e2cec71 1237realclean: _realcleaner _mopup
fcfe1ab7 1238 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
70af249b 1239
b37ebb13 1240_clobber:
d9821278 1241 -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
b98f6b80 1242 -rm -rf host
0279961e 1243 rm -f t/test_state
bf35c3f6 1244 rm -f config.sh cppstdin Policy.sh extras.lst
b37ebb13 1245
6e2cec71 1246clobber: _realcleaner _mopup _clobber
70af249b
CS
1247
1248distclean: clobber
1249
2edbd6da 1250# Like distclean but also removes emacs backups and *.orig.
6e2cec71 1251veryclean: _verycleaner _mopup _clobber
b37ebb13 1252 -@rm -f Obsolete Wanted
2edbd6da 1253
70af249b
CS
1254# Do not 'make _mopup' directly.
1255_mopup:
9387abf8 1256 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1ed50e5b 1257 -rmdir .depending
72b3d9b4 1258 -@test -f extra.pods && rm -f `cat extra.pods`
b4bc034f 1259 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
60f0ee9d 1260 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
d96ebe2e 1261 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
f01ecde8 1262 -rm -f *perl.xok
ce0286c6 1263 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
34b80e25 1264 -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
fc40bd89 1265 -rm -f config.arch config.over $(DTRACE_H)
70af249b
CS
1266
1267# Do not 'make _tidy' directly.
1268_tidy:
e3f83878
JH
1269 -cd pod; $(LDLIBPTH) $(MAKE) clean
1270 -cd utils; $(LDLIBPTH) $(MAKE) clean
1271 -cd x2p; $(LDLIBPTH) $(MAKE) clean
ff346313 1272 -rm -f lib/Config_git.pl git_version.h
4318d5a0 1273 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
199863e7 1274 $(MINIPERL) make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
a0d0e21e 1275 done
ff68c719 1276
2edbd6da 1277_cleaner1:
4633a7c4 1278 -cd os2; rm -f Makefile
2edbd6da
JH
1279 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1280 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1281 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
199863e7 1282 -@if test -f $(MINIPERL_EXE) ; then \
61edc683 1283 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
199863e7 1284 $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
61edc683
NC
1285 done ; \
1286 else \
1287 sh $(CLEAN).sh ; \
1288 fi
1289 rm -f realclean.sh veryclean.sh
e621c5a8 1290 -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
0d4cbbcf
NC
1291
1292# Dear POSIX, thanks for making the default to xargs to be
1293# run once if nothhing is passed in. It is such a great help.
2edbd6da 1294
2ad994b6 1295# Some systems do not support "?", so keep these files separate.
2edbd6da 1296_cleaner2:
2ad994b6 1297 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
5033177e 1298 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
f18bc4a8
NC
1299 rm -f t/$(PERL_EXE) t/rantests
1300 rm -rf t/tmp*
a0d0e21e 1301 rm -rf $(addedbyconf)
0827416d 1302 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
c27f7bb1 1303 rm -f $(private)
ca12659b 1304 rm -rf $(unidatafiles) $(unidatadirs)
a0d0e21e 1305 rm -rf lib/auto
07a6e20d 1306 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
16d20bd9 1307 rm -f h2ph.man pstruct
a0d0e21e 1308 rm -rf .config
7353f64c 1309 rm -f preload
5daeb5b0
NC
1310 rm -f pod2htmd.tmp
1311 rm -rf pod/perlfunc pod/perlipc
1312 -rmdir ext/B/lib
1313 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
727d4ce6
NC
1314 -rmdir lib/version lib/threads lib/inc/latest lib/inc lib/encoding
1315 -rmdir lib/autodie/exception lib/autodie lib/XS lib/Win32API lib/VMS
1316 -rmdir lib/Unicode/Collate/Locale lib/Unicode/Collate/CJK
1317 -rmdir lib/Unicode/Collate lib/Tie/Hash lib/Thread lib/Text
1318 -rmdir lib/Test/Builder/Tester lib/Test/Builder lib/Test lib/Term
1319 -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1320 -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1321 -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1322 -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1323 -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Search
1324 -rmdir lib/Scalar lib/Pod/Text lib/Pod/Simple lib/Pod/Perldoc
1325 -rmdir lib/PerlIO/via lib/PerlIO lib/Perl lib/Parse/CPAN lib/Parse
1326 -rmdir lib/Params lib/Package lib/Net/FTP lib/Module/Load
1327 -rmdir lib/Module/CoreList lib/Module/Build/Platform lib/Module/Build
1328 -rmdir lib/Module lib/Memoize lib/Math/BigInt lib/Math/BigFloat
1329 -rmdir lib/Math lib/MIME lib/Locale/Maketext lib/Locale/Codes
1330 -rmdir lib/Locale lib/List/Util lib/List lib/JSON/PP lib/JSON lib/IPC
1331 -rmdir lib/IO/Uncompress/Adapter lib/IO/Uncompress lib/IO/Socket
1332 -rmdir lib/IO/Compress/Zlib lib/IO/Compress/Zip lib/IO/Compress/Gzip
1333 -rmdir lib/IO/Compress/Base lib/IO/Compress/Adapter lib/IO/Compress
1334 -rmdir lib/IO lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash
1335 -rmdir lib/HTTP lib/Filter/Util lib/Filter lib/File/Spec
1336 -rmdir lib/ExtUtils/Typemaps lib/ExtUtils/ParseXS
1337 -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1338 -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1339 -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1340 -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1341 -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1342 -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1343 -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1344 -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Meta
1345 -rmdir lib/CPAN/LWP lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP
7263d211
SH
1346 -rmdir lib/CPAN/Exception lib/CPAN/API lib/CPAN lib/CGI lib/Attribute
1347 -rmdir lib/Archive/Tar lib/Archive lib/App/Prove/State/Result
1348 -rmdir lib/App/Prove/State lib/App/Prove lib/App
ecfc5424 1349
f4db5405 1350_realcleaner:
95aef5ce 1351 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
2edbd6da
JH
1352 @$(LDLIBPTH) $(MAKE) _cleaner2
1353
f4db5405 1354_verycleaner:
2edbd6da
JH
1355 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1356 @$(LDLIBPTH) $(MAKE) _cleaner2
c94787a5 1357 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
2edbd6da 1358
869a466c 1359.PHONY: lint
bf0dfd28 1360lint: $(c)
075abff3 1361 rm -f *.ln
66a1b24b 1362 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
2304df62 1363
abcf5ada
AL
1364.PHONY: splint
1365splint: $(c)
1366 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1367
fb73857a 1368# Need to unset during recursion to go out of loop.
1369# The README below ensures that the dependency list is never empty and
1370# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
cd4d8a96 1371
84902520 1372MAKEDEPEND = Makefile makedepend
cd4d8a96 1373
fb73857a 1374$(FIRSTMAKEFILE): README $(MAKEDEPEND)
cd4d8a96 1375 $(MAKE) depend MAKEDEPEND=
9719c95b
NC
1376!NO!SUBS!
1377
1378for f in $SH; do
1379 file=`SH_to_target $f`
1380 $spitshell >>$Makefile <<!GROK!THIS!
a0d0e21e 1381
9719c95b
NC
1382$file: $f config.sh
1383 \$(SHELL) $f
1384!GROK!THIS!
1385done
1386
1387$spitshell >>$Makefile <<'!NO!SUBS!'
655635e8 1388
869a466c 1389.PHONY: depend
2304df62 1390depend: makedepend
3ae7e562 1391 sh ./makedepend MAKE=$(MAKE) cflags
2304df62 1392
9988b539 1393.PHONY: test check test_prep test_prep_nodll test_prep_pre \
ec81ed5d 1394 test_prep_reonly test_tty test-tty test_notty test-notty \
499cea6b 1395 test_harness test_harness_notty minitest test-reonly _test
f258a656
NC
1396
1397_test:
1398 echo >&2 The _test target is deprecated. Please upgrade your smoker
463c96de 1399 $(RUN_TESTS) choose
869a466c 1400
ec861bc1
JH
1401# Cannot delegate rebuilding of t/perl to make
1402# to allow interlaced test and minitest
3e3baf6d 1403
1167a30e
IZ
1404# Architecture-neutral stuff:
1405
1406test_prep_pre: preplibrary utilities $(nonxs_ext)
421103b7 1407!NO!SUBS!
1167a30e 1408
421103b7
JR
1409case "$targethost" in
1410'') $spitshell >>$Makefile <<'!NO!SUBS!'
59c72abb 1411test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
9f417383
NC
1412 $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p x2p/find2perl \
1413 $(generated_pods)
34b80e25 1414 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
a0ed51b3 1415
421103b7
JR
1416!NO!SUBS!
1417;;
1418*) $spitshell >>$Makefile <<!GROK!THIS!
1419test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1420 \$(dynamic_ext) \$(TEST_PERL_DLL) runtests x2p/s2p x2p/find2perl \
1421 \$(generated_pods)
1422 $to libperl.*
1423 $to t/*
1424 $to lib/*
1425 $to TestInit.pm
1426 $to win32/FindExt.pm
1427 $to regen/*
1428 $to pod/*
1429 $to MANIFEST
1430 $to Porting/*
1431 $to cpan/*/t
1432 $to dist/*/t
1433 $to ext/*/t
1434 $to cpan/Term-Cap/test.pl
1435 $to cpan/Pod-Usage/*
1436 $to cpan/Pod-Parser/*
1437 $to cpan/IO-Compress/*
1438 $to cpan/HTTP-Tiny/lib/*
1439 $to cpan/Filter-Util-Call/filter-util.pl
1440 $to cpan/Digest-MD5/*
1441 $to cpan/Digest-SHA/*
1442 $to cpan/Test-Simple/*
1443 $to cpan/Pod-Parser/lib/*
1444 $to cpan/Test-Harness/*
1445 $to cpan/Scalar-List-Utils/*
1446 $to ext/IPC-Open3/*
1447 $to ext/Tie-Memoize/*
1448 $to ext/POSIX/*
1449 $to dist/IO/*
1450# --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1451 $to config_h.SH
1452 $to perl.h
1453 $to cflags
1454# --- For Module::Build
1455 $to cpan/Module-Build/lib/*
1456 $to *.h
1457# --- For t/x2p/s2p.t
1458 $to x2p
b83fd0ae
BF
1459# --- For t/TEST
1460 $to config.sh
421103b7
JR
1461# --- For lib/diagnostics.t with -Duseshrplib
1462 $to \$(PERL_EXE)
1463 cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1464 $to t/\$(PERL_EXE)
1465
1466!GROK!THIS!
1467;;
1468esac
1469
1470$spitshell >>$Makefile <<'!NO!SUBS!'
34b80e25 1471test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
ec81ed5d 1472 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
34b80e25 1473 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
86bfbb31
JR
1474!NO!SUBS!
1475
1476case "$targethost" in
1477'') $spitshell >>$Makefile <<'!NO!SUBS!'
ec81ed5d 1478
937aca76 1479test check: test_prep
5fb77da4 1480 $(RUN_TESTS) choose
ec861bc1 1481
86bfbb31
JR
1482!NO!SUBS!
1483;;
1484*) $spitshell >>$Makefile <<!GROK!THIS!
1485
1486test check: test_prep
fa142983 1487 $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
86bfbb31
JR
1488
1489!GROK!THIS!
1490;;
1491esac
1492
1493$spitshell >>$Makefile <<'!NO!SUBS!'
59c72abb 1494test_tty test-tty: test_prep
5fb77da4 1495 $(RUN_TESTS) tty
ec861bc1 1496
59c72abb 1497test_notty test-notty: test_prep
5fb77da4 1498 $(RUN_TESTS) no-tty
ec861bc1 1499
45ed6be3
JC
1500!NO!SUBS!
1501
1502case "${osname}${osvers}" in
09617314 1503linux*|darwin*)
45ed6be3 1504 $spitshell >>$Makefile <<'!NO!SUBS!'
7a834142
JH
1505# Targets for valgrind testing:
1506
9d4d67dd
NC
1507test.valgrind check.valgrind: test_prep
1508 @echo "Checking usemymalloc='n' in config.sh..."
1509 @grep "^usemymalloc=" config.sh
1510 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1511 @echo "And of course you have to have valgrind..."
1512 $(VALGRIND) $(VG_TEST) || exit 1
5fb77da4 1513 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(RUN_TESTS) choose
45ed6be3
JC
1514!NO!SUBS!
1515 ;;
1516esac
1517
1518$spitshell >>$Makefile <<'!NO!SUBS!'
7a834142 1519
344479a0
NC
1520# Can't depend on lib/Config.pm because that might be where miniperl
1521# is crashing.
1522minitest: $(MINIPERL_EXE)
8a71e97e 1523 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
4fa3f26e 1524 @echo " "
d96ebe2e 1525 @echo "You may see some irrelevant test failures if you have been unable"
82dee7de 1526 @echo "to build lib/Config.pm, or the Unicode data files."
4fa3f26e 1527 @echo " "
34b80e25 1528 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \
bb52f720 1529 && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t </dev/tty
16d20bd9 1530
1167a30e
IZ
1531# Test via harness
1532
59c72abb 1533test_harness test-harness: test_prep
5fb77da4 1534 TESTFILE=harness $(RUN_TESTS) choose
1167a30e 1535
69bfbd2f 1536test_harness_notty: test_prep
5fb77da4 1537 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
69bfbd2f 1538
59c72abb 1539test_reonly test-reonly: test_prep_reonly
5fb77da4 1540 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
4979e288 1541
1e547844
JV
1542
1543# Porting tests (well-formedness of pod, manifest, etc)
1544
59c72abb 1545test_porting test-porting: test_prep
48d97dac 1546 cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1e547844 1547
fb73857a 1548# Handy way to run perlbug -ok without having to install and run the
84902520 1549# installed perlbug. We don't re-run the tests here - we trust the user.
fb73857a 1550# Please *don't* use this unless all tests pass.
1d2dff63 1551# If you want to report test failures, use "make nok" instead.
869a466c
JH
1552
1553.PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1554
188cd53f 1555ok: utilities
9094a4e8 1556 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
84902520 1557
105f9295 1558okfile: utilities
9094a4e8 1559 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
105f9295 1560
890b8eb0 1561oknack: utilities
9094a4e8 1562 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
890b8eb0
NC
1563
1564okfilenack: utilities
9094a4e8 1565 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
890b8eb0 1566
1d2dff63 1567nok: utilities
9094a4e8 1568 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1d2dff63 1569
b4e8cfaf 1570nokfile: utilities
9094a4e8 1571 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
b4e8cfaf 1572
890b8eb0 1573noknack: utilities
9094a4e8 1574 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
890b8eb0
NC
1575
1576nokfilenack: utilities
9094a4e8 1577 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
890b8eb0 1578
655e5c9e 1579.PHONY: clist hlist
869a466c 1580
85e6fe83 1581clist: $(c)
92c28edd 1582 echo $(c) | tr ' ' $(TRNL) >.clist
2304df62 1583
85e6fe83 1584hlist: $(h)
92c28edd 1585 echo $(h) | tr ' ' $(TRNL) >.hlist
2304df62 1586
869a466c 1587.PHONY: distcheck
599a829f 1588distcheck: FORCE
760ac839
LW
1589 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1590
dde299c1 1591.PHONY: ctags
3ee700d1 1592
5c36f626 1593ctags:
bf799c64 1594 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
5c36f626 1595
2304df62
AD
1596# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1597# If this runs make out of memory, delete /usr/include lines.
1598!NO!SUBS!
1599
85e6fe83 1600$eunicefix Makefile
cd4d8a96 1601$rm -f $firstmakefile
5ff3f7a4
GS
1602
1603# Now do any special processing required before building.
1604
1605case "$ebcdic" in
2d340b60 1606define)
5ff3f7a4 1607 xxx=''
2d340b60 1608 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
7a66b286 1609case "$osname" in
25e9a2e3 1610os390|posix-bc)
e9d08790 1611 if cd x2p
5ff3f7a4 1612 then
e9d08790 1613 rm -f y.tab.c y.tab.h
5928ee40
JH
1614 case "$osname" in
1615 posix-bc)
1616 # we are using two different yaccs in BS2000 Posix!
1617 byacc a2p.y >/dev/null 2>&1
1618 ;;
1619 *) # e.g. os390
1620 yacc a2p.y >/dev/null 2>&1
1621 ;;
1622 esac
e9d08790
JH
1623 if cmp -s y.tab.c a2p.c
1624 then
1625 rm -f y.tab.c
1626 else
1627 echo "a2p.y -> a2p.c" >&2
1628 mv -f y.tab.c a2p.c
1629 chmod u+w a2p.c
1630 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
f1f802f7 1631 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
e9d08790
JH
1632 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1633 xxx="$xxx a2p.c"
1634 fi
1635 # In case somebody yacc -d:ed the a2p.y.
1636 if test -f y.tab.h
1637 then
1638 if cmp -s y.tab.h a2p.h
1639 then
1640 rm -f y.tab.h
1641 else
1642 echo "a2p.h -> a2p.h" >&2
1643 mv -f y.tab.h a2p.h
1644 xxx="$xxx a2p.h"
1645 fi
1646 fi
1647 cd ..
5ff3f7a4 1648 fi
7a66b286 1649 ;;
aa34f189 1650*)
e9d08790 1651 echo "'$osname' is an EBCDIC system I don't know that well." >&4
aa34f189 1652 ;;
fe572743 1653esac
5ff3f7a4
GS
1654 case "$xxx" in
1655 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1656 esac
1657 ;;
1658esac
1659
075abff3 1660# ex: set ts=8 sts=4 sw=4 noet: