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