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