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