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