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