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