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