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