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