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