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