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