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