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