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