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