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