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