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