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