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