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