This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Send all installperl messages to STDERR and be -w clean.
[perl5.git] / Makefile.SH
CommitLineData
599a829f 1#! /bin/sh
2000072c 2case $CONFIGDOTSH in
2304df62
AD
3'')
4 if test -f config.sh; then TOP=.;
5 elif test -f ../config.sh; then TOP=..;
6 elif test -f ../../config.sh; then TOP=../..;
7 elif test -f ../../../config.sh; then TOP=../../..;
8 elif test -f ../../../../config.sh; then TOP=../../../..;
9 else
10 echo "Can't find config.sh."; exit 1
11 fi
12 . $TOP/config.sh
13 ;;
14esac
15: This forces SH files to create target in same directory as SH file.
16: This is so that make depend always knows where to find SH derivatives.
17case "$0" in
18*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
19esac
20
2304df62
AD
21case "$d_dosuid" in
22*define*) suidperl='suidperl' ;;
23*) suidperl='';;
24esac
25
d5d19f97 26linklibperl='$(LIBPERL)'
3c321fdc 27shrpldflags='$(LDDLFLAGS)'
6ee623d5 28ldlibpth=''
d96ebe2e 29case "$useshrplib" in
30true)
6ee623d5 31 # Prefix all runs of 'miniperl' and 'perl' with
5cf1d1f1 32 # $ldlibpth so that ./perl finds *this* shared libperl.
c1b49bc0
GS
33 case "$LD_LIBRARY_PATH" in
34 '')
35 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
36 *)
37 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
38 esac
6ee623d5 39
d5d19f97 40 pldlflags="$cccdlflags"
d96ebe2e 41 case "${osname}${osvers}" in
42 next4*)
3c321fdc 43 ld=libtool
44 lddlflags="-dynamic -undefined warning -framework System \
45 -compatibility_version 1 -current_version $patchlevel \
46 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
6ee623d5 47 ;;
f556e5b9
JH
48 rhapsody*|darwin*)
49 shrpldflags="${ldflags} -dynamiclib \
50 -compatibility_version 1 \
51 -current_version \
52 ${api_version}.${api_subversion} \
53 -image_base 0x4be00000 \
54 -install_name \$(shrpdir)/\$@"
55 ;;
5cf1d1f1 56 cygwin*)
8736538c
AS
57 linklibperl="-lperl"
58 ;;
73d40b3e 59 sunos*)
d5d19f97
UP
60 linklibperl="-lperl"
61 ;;
43039de7 62 netbsd*|freebsd[234]*|openbsd*)
099685bc
JH
63 linklibperl="-L. -lperl"
64 ;;
3c321fdc 65 aix*)
66 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
1553ab04 67 case "$osvers" in
549a6b10 68 3*) shrpldflags="$shrpldflags -e _nostart"
1553ab04 69 ;;
549a6b10 70 *) shrpldflags="$shrpldflags -b noentry"
1553ab04
TB
71 ;;
72 esac
549a6b10
JH
73 shrpldflags="$shrpldflags $ldflags $libs $cryptlib"
74 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
3c321fdc 75 ;;
1c7d1a19
GS
76 hpux*)
77 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
46193409 78 ;;
655635e8 79 esac
5cf1d1f1
JH
80 case "$ldlibpthname" in
81 '') ;;
82 *)
83 case "$osname" in
84 os2)
85 ldlibpth=''
86 ;;
5cf1d1f1
JH
87 *)
88 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
89 ;;
90 esac
c1b49bc0
GS
91 # Strip off any trailing :'s
92 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
5cf1d1f1
JH
93 ;;
94 esac
d5d19f97 95 ;;
f0efd8cf 96*) pldlflags=''
d96ebe2e 97 ;;
ecfc5424
AD
98esac
99
a0d0e21e
LW
100: Prepare dependency lists for Makefile.
101dynamic_list=' '
102for f in $dynamic_ext; do
103 : the dependency named here will never exist
ecfc5424 104 base=`echo "$f" | sed 's/.*\///'`
75f92628 105 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
a0d0e21e
LW
106done
107
108static_list=' '
a0d0e21e
LW
109for f in $static_ext; do
110 base=`echo "$f" | sed 's/.*\///'`
cd4d8a96 111 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
a0d0e21e
LW
112done
113
4318d5a0
GB
114nonxs_list=' '
115for f in $nonxs_ext; do
116 base=`echo "$f" | sed 's/.*\///'`
117 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
118done
119
2304df62 120echo "Extracting Makefile (with variable substitutions)"
655635e8 121$spitshell >Makefile <<!GROK!THIS!
a0d0e21e 122# Makefile.SH
85e6fe83
LW
123# This file is derived from Makefile.SH. Any changes made here will
124# be lost the next time you run Configure.
655635e8 125# Makefile is used to generate $firstmakefile. The only difference
126# is that $firstmakefile has the dependencies filled in at the end.
2304df62 127#
fed7345c 128#
2304df62
AD
129# I now supply perly.c with the kits, so don't remake perly.c without byacc
130BYACC = $byacc
131CC = $cc
232e078e 132LD = $ld
16d20bd9 133
2304df62
AD
134LDFLAGS = $ldflags
135CLDFLAGS = $ldflags
85e6fe83 136
2304df62
AD
137SMALL = $small
138LARGE = $large $split
139mallocsrc = $mallocsrc
140mallocobj = $mallocobj
85e6fe83 141LNS = $lns
2304df62 142RMS = rm -f
85e6fe83
LW
143ranlib = $ranlib
144
16d20bd9
AD
145# The following are mentioned only to make metaconfig include the
146# appropriate questions in Configure. If you want to change these,
8e07c86e 147# edit config.sh instead, or specify --man1dir=/wherever on
16d20bd9
AD
148# installman commandline.
149bin = $installbin
150scriptdir = $scriptdir
d96ebe2e 151shrpdir = $archlibexp/CORE
16d20bd9
AD
152privlib = $installprivlib
153man1dir = $man1dir
154man1ext = $man1ext
155man3dir = $man3dir
156man3ext = $man3ext
157
85e6fe83
LW
158# The following are used to build and install shared libraries for
159# dynamic loading.
160LDDLFLAGS = $lddlflags
3c321fdc 161SHRPLDFLAGS = $shrpldflags
85e6fe83 162CCDLFLAGS = $ccdlflags
a0d0e21e 163DLSUFFIX = .$dlext
ecfc5424 164PLDLFLAGS = $pldlflags
d96ebe2e 165LIBPERL = $libperl
d5d19f97 166LLIBPERL= $linklibperl
ecfc5424 167SHRPENV = $shrpenv
a0d0e21e 168
6ee623d5 169# The following is used to include the current directory in
5cf1d1f1 170# the dynamic loader path you are building a shared libperl.
6ee623d5
GS
171LDLIBPTH = $ldlibpth
172
a0d0e21e
LW
173dynamic_ext = $dynamic_list
174static_ext = $static_list
4318d5a0
GB
175nonxs_ext = $nonxs_list
176ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
cd4d8a96 177DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
2304df62
AD
178
179libs = $libs $cryptlib
180
909b3858 181public = perl $suidperl utilities translators
2304df62
AD
182
183shellflags = $shellflags
184
d96ebe2e 185# This is set to MAKE=$make if your $make command doesn't
186# do it for you.
187$make_set_make
4633a7c4 188
dfe9444c 189# These variables may need to be manually set for non-Unix systems.
ccc7f9b3 190AR = $full_ar
dfe9444c
AD
191EXE_EXT = $_exe
192LIB_EXT = $_a
193OBJ_EXT = $_o
194PATH_SEP = $p_
4633a7c4
LW
195
196FIRSTMAKEFILE = $firstmakefile
197
198# Any special object files needed by this architecture, e.g. os2/os2.obj
199ARCHOBJS = $archobjs
200
cd4d8a96 201.SUFFIXES: .c \$(OBJ_EXT)
202
d96ebe2e 203# grrr
204SHELL = $sh
655635e8 205
28e8609d
JH
206# how to tr(anslate) newlines
207TRNL = '$trnl'
208
b7b35fc2
JH
209# not used by Makefile but by installperl;
210# mentioned here so that metaconfig picks it up
211INSTALL_USR_BIN_PERL = $installusrbinperl
212
2304df62
AD
213!GROK!THIS!
214
85e6fe83 215## In the following dollars and backticks do not need the extra backslash.
2304df62
AD
216$spitshell >>Makefile <<'!NO!SUBS!'
217
d96ebe2e 218CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
2304df62 219
fed7345c 220private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
2304df62 221
4633a7c4
LW
222# Files to be built with variable substitution before miniperl
223# is available.
224sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
4755096e 225 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
4633a7c4 226
3ebb1980 227shextract = Makefile cflags config.h makeaperl makedepend \
4755096e 228 makedir myconfig writemain pod/Makefile
4633a7c4
LW
229
230# Files to be built with variable substitution after miniperl is
231# available. Dependencies handled manually below (for now).
2304df62 232
efb12ca0 233pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
4755096e
GS
234 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
235 pod/buildtoc.PL
4633a7c4 236
4755096e 237# lib/lib.pm is not listed here because it has a rule of its own.
efb12ca0 238plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
4755096e
GS
239 pod/pod2usage pod/podchecker pod/podselect \
240 pod/buildtoc
4633a7c4 241
4755096e 242addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
2304df62 243
fed7345c 244h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
a0d0e21e 245h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
6f4183fe 246h3 = opcode.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
219f41b1 247h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
4438c4b7 248h5 = utf8.h warnings.h
33b839e2 249h = $(h1) $(h2) $(h3) $(h4) $(h5)
2304df62 250
e8edd1e6 251c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
a0ed51b3 252c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
09bef843 253c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
6f4183fe 254c4 = globals.c perlio.c perlapi.c
2304df62 255
09bef843 256c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
2304df62 257
e8edd1e6 258obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT)
cd4d8a96 259obj2 = 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)
6f4183fe 260obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) xsutils$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) perlapi$(OBJ_EXT)
655635e8 261
4633a7c4 262obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
2304df62 263
a0d0e21e
LW
264# Once perl has been Configure'd and built ok you build different
265# perl variants (Debugging, Embedded, Multiplicity etc) by saying:
d96ebe2e 266# make clean; make LIBPERL=libperl<type>.a
a0d0e21e
LW
267# where <type> is some combination of 'd' and(or) 'e' or 'm'.
268# See cflags to understand how this works.
269#
d96ebe2e 270# This mechanism is getting clunky and might not even work any more.
271# EMBEDDING is on by default, and MULTIPLICITY doesn't work.
272#
a0d0e21e 273
2304df62
AD
274lintflags = -hbvxac
275
cd4d8a96 276.c$(OBJ_EXT):
d96ebe2e 277 $(CCCMD) $(PLDLFLAGS) $*.c
2304df62 278
b1a1e9f1 279all: $(FIRSTMAKEFILE) miniperl extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext)
248e23d9
GS
280 @echo " ";
281 @echo " Everything is up to date. 'make test' to run test suite."
909b3858 282
6ee623d5
GS
283compile: all
284 echo "testing compilation" > testcompile;
285 cd utils; $(MAKE) compile;
286 cd x2p; $(MAKE) compile;
287 cd pod; $(MAKE) compile;
288
909b3858 289translators: miniperl lib/Config.pm FORCE
6ee623d5 290 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
8e07c86e 291
4755096e 292utilities: miniperl lib/Config.pm $(plextract) lib/lib.pm FORCE
6ee623d5 293 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
909b3858 294
295
16d20bd9
AD
296# This is now done by installman only if you actually want the man pages.
297# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
85e6fe83
LW
298
299# Phony target to force checking subdirectories.
e50aee73 300# Apparently some makes require an action for the FORCE target.
85e6fe83 301FORCE:
4633a7c4 302 @sh -c true
85e6fe83 303
bd0dd1d8 304opmini$(OBJ_EXT): op.c
0548b47c
GS
305 $(RMS) opmini.c
306 $(LNS) op.c opmini.c
307 $(CCCMD) $(PLDLFLAGS) -DPERL_EXTERNAL_GLOB opmini.c
308 $(RMS) opmini.c
bd0dd1d8 309
92c28edd
JH
310miniperlmain$(OBJ_EXT): miniperlmain.c
311 $(CCCMD) $(PLDLFLAGS) $*.c
ecfc5424 312
92c28edd 313perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
e8827f64 314 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
92c28edd 315 sh mv-if-diff writemain.tmp perlmain.c
85e6fe83 316
cd4d8a96 317perlmain$(OBJ_EXT): perlmain.c
92c28edd 318 $(CCCMD) $(PLDLFLAGS) $*.c
85e6fe83 319
a0d0e21e
LW
320# The file ext.libs is a list of libraries that must be linked in
321# for static extensions, e.g. -lm -lgdbm, etc. The individual
322# static extension Makefile's add to it.
fed7345c 323ext.libs: $(static_ext)
a0d0e21e 324 -@test -f ext.libs || touch ext.libs
85e6fe83 325
ecfc5424 326!NO!SUBS!
599a829f 327
d96ebe2e 328# How to build libperl. This is still rather convoluted.
599a829f 329# Load up custom Makefile.SH fragment for shared loading and executables:
8736538c 330case "$osname" in
8736538c
AS
331*)
332 Makefile_s="$osname/Makefile.SHs"
333 ;;
334esac
335
549a6b10
JH
336case "$osname" in
337aix)
338 $spitshell >>Makefile <<!GROK!THIS!
339LIBS = $libs
5f9d9a17
ME
340# In AIX we need to change this for building Perl itself from
341# its earlier definition (which is for building external
342# extensions *after* Perl has been built and installed)
343CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
549a6b10
JH
344
345!GROK!THIS!
346 case "$useshrplib" in
347 define|true|[yY]*)
348 $spitshell >>Makefile <<'!NO!SUBS!'
349
350LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
351MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
352
353$(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
354 $(RMS) $(LIBPERL_NONSHR)
355 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
356
bd0dd1d8 357$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
a7089531
GS
358 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
359 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
549a6b10
JH
360
361MINIPERLEXP = $(MINIPERL_NONSHR)
362
363LIBPERLEXPORT = perl.exp
364
365!NO!SUBS!
366
367 ;;
368 *)
369 $spitshell >>Makefile <<'!NO!SUBS!'
370MINIPERLEXP = miniperl$(EXE_EXT)
371
372PERLEXPORT = perl.exp
373
374!NO!SUBS!
375 ;;
376 esac
377 $spitshell >>Makefile <<'!NO!SUBS!'
378perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
379 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
380 sh mv-if-diff perl.exp.tmp perl.exp
381
382!NO!SUBS!
383 ;;
2c2d71f5
JH
384os2)
385 $spitshell >>Makefile <<'!NO!SUBS!'
386MINIPERLEXP = miniperl
387
388perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
389 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
390 sh mv-if-diff perl.exp.tmp perl5.def
391
392!NO!SUBS!
393 ;;
549a6b10
JH
394esac
395
8736538c
AS
396if test -r $Makefile_s ; then
397 . $Makefile_s
d96ebe2e 398 $spitshell >>Makefile <<!GROK!THIS!
cd4d8a96 399
8736538c 400Makefile: $Makefile_s
cd4d8a96 401!GROK!THIS!
402else
f0efd8cf 403 $spitshell >>Makefile <<'!NO!SUBS!'
549a6b10 404$(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
9c9e9f08 405!NO!SUBS!
d96ebe2e 406 case "$useshrplib" in
407 true)
408 $spitshell >>Makefile <<'!NO!SUBS!'
3c321fdc 409 $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
410!NO!SUBS!
411 case "$osname" in
412 aix)
413 $spitshell >>Makefile <<'!NO!SUBS!'
28e8609d 414 rm -f libperl$(OBJ_EXT)
3c321fdc 415 mv $@ libperl$(OBJ_EXT)
416 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
ecfc5424 417!NO!SUBS!
3c321fdc 418 ;;
419 esac
d96ebe2e 420 ;;
421 *)
422 $spitshell >>Makefile <<'!NO!SUBS!'
423 rm -f $(LIBPERL)
424 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
425 @$(ranlib) $(LIBPERL)
655635e8 426!NO!SUBS!
d96ebe2e 427 ;;
428 esac
599a829f
IZ
429 $spitshell >>Makefile <<'!NO!SUBS!'
430
431# How to build executables.
432
433# The $& notation tells Sequent machines that it can do a parallel make,
434# and is harmless otherwise.
435# The miniperl -w -MExporter line is a basic cheap test to catch errors
436# before make goes on to run preplibrary and then MakeMaker on extensions.
437# This is very handy because later errors are often caused by miniperl
438# build problems but that's not obvious to the novice.
439# The Module used here must not depend on Config or any extensions.
440
ecfb2188
GS
441!NO!SUBS!
442
443 case "${osname}${osvers}" in
535d2540 444 next4*)
ecfb2188 445 $spitshell >>Makefile <<'!NO!SUBS!'
bd0dd1d8 446miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
ecfb2188
GS
447 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
448 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
bd0dd1d8 449 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188
GS
450!NO!SUBS!
451 ;;
535d2540
JH
452 aix*)
453 $spitshell >>Makefile <<'!NO!SUBS!'
454miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
455 $(CC) -o miniperl $(CLDFLAGS) \
456 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
457 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
458 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
459!NO!SUBS!
460 ;;
ecfb2188
GS
461 *)
462 $spitshell >>Makefile <<'!NO!SUBS!'
bd0dd1d8 463miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
a7089531
GS
464 $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl \
465 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
bd0dd1d8 466 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188
GS
467!NO!SUBS!
468 ;;
469 esac
470
471 $spitshell >>Makefile <<'!NO!SUBS!'
599a829f 472
549a6b10 473perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
6ee623d5 474 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 475
549a6b10 476pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
6ee623d5 477 $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 478
549a6b10 479purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
6ee623d5 480 $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
dbadb36a 481
549a6b10 482quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
6ee623d5 483 $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62
AD
484
485# This version, if specified in Configure, does ONLY those scripts which need
486# set-id emulation. Suidperl must be setuid root. It contains the "taint"
487# checks as well as the special code to validate that the script in question
488# has been invoked correctly.
489
549a6b10 490suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
6ee623d5 491 $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 492
599a829f
IZ
493!NO!SUBS!
494
495fi
496
497$spitshell >>Makefile <<'!NO!SUBS!'
498
cd4d8a96 499sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
2304df62 500 $(RMS) sperl.c
85e6fe83 501 $(LNS) perl.c sperl.c
d96ebe2e 502 $(CCCMD) -DIAMSUID sperl.c
2304df62
AD
503 $(RMS) sperl.c
504
fec02dd3
AD
505# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
506# test -d lib/auto || mkdir lib/auto
507#
8374d37a 508preplibrary: miniperl lib/Config.pm
cd4d8a96 509 @sh ./makedir lib/auto
a0d0e21e 510 @echo " AutoSplitting perl library"
92c28edd
JH
511 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
512 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
2304df62 513
75f92628 514# Take care to avoid modifying lib/Config.pm without reason
fb73857a 515# (If trying to create a new port and having problems with the configpm script,
516# try 'make minitest' and/or commenting out the tests at the end of configpm.)
06605284 517lib/Config.pm: config.sh miniperl configpm lib/re.pm
e8827f64 518 $(LDLIBPTH) ./miniperl configpm configpm.tmp
92c28edd 519 sh mv-if-diff configpm.tmp $@
2304df62 520
92c28edd 521lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
e8827f64 522 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
92c28edd 523 sh mv-if-diff minimod.tmp $@
fed7345c 524
92c28edd 525lib/re.pm: ext/re/re.pm
ceb0239c 526 rm -f $@
92c28edd 527 cat ext/re/re.pm > $@
7cfc0d09 528
06605284 529$(plextract): miniperl lib/Config.pm
92c28edd 530 $(LDLIBPTH) ./miniperl -Ilib $@.PL
72b3d9b4 531
4755096e
GS
532lib/lib.pm: miniperl lib/Config.pm
533 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
534
b1a1e9f1 535extra.pods: miniperl
fec93702 536 -@test -f extra.pods && rm -f `cat extra.pods`
72b3d9b4 537 -@rm -f extra.pods
b4bc034f 538 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
72b3d9b4
GS
539 nx=`echo $$x | sed -e "s/README\.//"`; \
540 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
541 echo "pod/perl"$$nx".pod" >> extra.pods ; \
542 done
b4bc034f 543 -@test -f vms/perlvms.pod && $(LNS) ../vms/perlvms.pod pod/perlvms.pod && echo "pod/perlvms.pod" >> extra.pods
72b3d9b4 544
f556e5b9
JH
545install-strip:
546 $(MAKE) STRIPFLAGS=-s install
547
fec93702 548install: all install.perl install.man
16d20bd9 549
b1a1e9f1 550install.perl: all installperl
6ee623d5
GS
551 if [ -n "$(COMPILE)" ]; \
552 then \
553 cd utils; $(MAKE) compile; \
554 cd ../x2p; $(MAKE) compile; \
555 cd ../pod; $(MAKE) compile; \
83673e1f 556 else :; \
6ee623d5 557 fi
f556e5b9 558 $(LDLIBPTH) ./perl installperl $(STRIPFLAGS)
a0d0e21e 559
b1a1e9f1 560install.man: all installman
6ee623d5 561 $(LDLIBPTH) ./perl installman
16d20bd9 562
84902520
TB
563# XXX Experimental. Hardwired values, but useful for testing.
564# Eventually Configure could ask for some of these values.
565install.html: all installhtml
b4bc034f 566 -@test -f README.vms && $(LNS) ../README.vms vms/README_vms.pod
6ee623d5 567 $(LDLIBPTH) ./perl installhtml \
84902520
TB
568 --podroot=. --podpath=. --recurse \
569 --htmldir=$(privlib)/html \
570 --htmlroot=$(privlib)/html \
571 --splithead=pod/perlipc \
572 --splititem=pod/perlfunc \
573 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
574 --verbose
575
16d20bd9 576
a0d0e21e 577# I now supply perly.c with the kits, so the following section is
56febc5e
AD
578# used only if you force byacc to run by saying
579# make run_byacc
580# Since we patch up the byacc output, the perly.fixer script needs
581# to run with precisely the same version of byacc as I use. You
582# normally shouldn't remake perly.[ch].
583
232e078e 584run_byacc: FORCE
56febc5e 585 $(BYACC) -d perly.y
28f14321 586 -chmod 664 perly.c
56febc5e 587 sh $(shellflags) ./perly.fixer y.tab.c perly.c
55497cff 588 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
589 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
ebb99254 590 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
55497cff 591 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
fb73857a 592 chmod 664 vms/perly_c.vms vms/perly_h.vms
593 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
56febc5e
AD
594
595# We don't want to regenerate perly.c and perly.h, but they might
596# appear out-of-date after a patch is applied or a new distribution is
597# made.
92c28edd 598perly.c: perly.y
b233458b
JH
599 -@sh -c true
600
92c28edd 601perly.h: perly.y
b233458b
JH
602 -@sh -c true
603
bd656b61 604# No compat3.sym here since and including the 5.004_50.
e4d5a464 605# No interp.sym since 5.005_03.
22c35a8c 606SYM = global.sym globvar.sym perlio.sym pp.sym
419eaf7b 607
22c35a8c 608SYMH = perlvars.h intrpvar.h thrdvar.h
419eaf7b 609
dae78bb1
IZ
610CHMOD_W = chmod +w
611
a8581515 612# The following files are generated automatically
c83f8f39
JH
613# keywords.pl: keywords.h
614# opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
615# [* embed.pl needs pp.sym generated by opcode.pl! *]
616# embed.pl: proto.h embed.h embedvar.h global.sym objXSUB.h
617# perlapi.h perlapi.c pod/perlintern.pod
618# pod/perlapi.pod
619# bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
620# ext/B/B/Asmdata.pm
621# regcomp.pl: regnodes.h
622# warnings.pl: warnings.h lib/warnings.pm
e50aee73
AD
623# The correct versions should be already supplied with the perl kit,
624# in case you don't have perl available.
e1354ed6 625# To force them to be regenerated, type
e50aee73 626# make regen_headers
e1354ed6 627
b4d4469a
JH
628AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
629 embed.h embedvar.h global.sym \
630 pod/perlintern.pod pod/perlapi.pod \
c83f8f39
JH
631 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
632 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
633 warnings.h lib/warnings.pm
e1354ed6 634
e50aee73 635regen_headers: FORCE
b4d4469a
JH
636 -$(CHMOD_W) $(AUTOGEN_FILES)
637 -perl keywords.pl
638 -perl opcode.pl
639 -perl embed.pl
640 -perl bytecode.pl
641 -perl regcomp.pl
642 -perl warnings.pl
8e07c86e 643
4755096e
GS
644regen_pods: FORCE
645 -cd pod; $(LDLIBPTH) make regen_pods
646
a0d0e21e 647# Extensions:
4318d5a0
GB
648# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
649# automatically get built. There should ordinarily be no need to change
650# any of this part of makefile.
a0d0e21e
LW
651#
652# The dummy dependency is a place holder in case $(dynamic_ext) or
653# $(static_ext) is empty.
654#
655# DynaLoader may be needed for extensions that use Makefile.PL.
656
657$(DYNALOADER): miniperl preplibrary FORCE
92c28edd 658 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e
LW
659
660d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
92c28edd 661 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e
LW
662
663s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
92c28edd 664 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
2304df62 665
4318d5a0 666n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE
92c28edd 667 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
4318d5a0 668
17b893d8 669clean: _tidy _mopup
70af249b
CS
670
671realclean: _cleaner _mopup
4e2a5f63 672 @echo "Note that make realclean does not delete config.sh or Policy.sh"
70af249b
CS
673
674clobber: _cleaner _mopup
4e2a5f63 675 rm -f config.sh cppstdin Policy.sh
70af249b
CS
676
677distclean: clobber
678
679# Do not 'make _mopup' directly.
680_mopup:
cd4d8a96 681 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
72b3d9b4 682 -@test -f extra.pods && rm -f `cat extra.pods`
b4bc034f 683 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
72b3d9b4 684 -rm -f perl.exp ext.libs extra.pods
d96ebe2e 685 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1cfa4ec7 686 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
e708dd94 687 rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
70af249b
CS
688
689# Do not 'make _tidy' directly.
690_tidy:
e3f83878
JH
691 -cd pod; $(LDLIBPTH) $(MAKE) clean
692 -cd utils; $(LDLIBPTH) $(MAKE) clean
693 -cd x2p; $(LDLIBPTH) $(MAKE) clean
4318d5a0 694 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 695 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
a0d0e21e 696 done
6ee623d5 697 rm -f testcompile compilelog
ff68c719 698
699# Do not 'make _cleaner' directly.
700_cleaner:
4633a7c4 701 -cd os2; rm -f Makefile
e3f83878
JH
702 -cd pod; $(LDLIBPTH) $(MAKE) realclean
703 -cd utils; $(LDLIBPTH) $(MAKE) realclean
704 -cd x2p; $(LDLIBPTH) $(MAKE) realclean
4318d5a0 705 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 706 $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
a0d0e21e 707 done
56acea6f 708 rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
a0d0e21e 709 rm -rf $(addedbyconf)
cd4d8a96 710 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
fed7345c 711 rm -f $(private)
a0d0e21e 712 rm -rf lib/auto
181ea953 713 rm -f lib/.exists lib/*/.exists
16d20bd9 714 rm -f h2ph.man pstruct
a0d0e21e 715 rm -rf .config
6ee623d5 716 rm -f testcompile compilelog
bb0110d4 717 -rmdir lib/B lib/Data lib/IO/Socket lib/IO
ecfc5424 718
2304df62
AD
719# The following lint has practically everything turned on. Unfortunately,
720# you have to wade through a lot of mumbo jumbo that can't be suppressed.
721# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
722# for that spot.
723
724lint: perly.c $(c)
725 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
726
fb73857a 727# Need to unset during recursion to go out of loop.
728# The README below ensures that the dependency list is never empty and
729# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
cd4d8a96 730
84902520 731MAKEDEPEND = Makefile makedepend
cd4d8a96 732
fb73857a 733$(FIRSTMAKEFILE): README $(MAKEDEPEND)
cd4d8a96 734 $(MAKE) depend MAKEDEPEND=
a0d0e21e 735
599a829f 736config.h: config_h.SH config.sh
655635e8 737 $(SHELL) config_h.SH
738
a0d0e21e 739# When done, touch perlmain.c so that it doesn't get remade each time.
2304df62 740depend: makedepend
fb73857a 741 sh ./makedepend MAKE=$(MAKE)
a0d0e21e 742 - test -s perlmain.c && touch perlmain.c
2304df62
AD
743 cd x2p; $(MAKE) depend
744
cd4d8a96 745# Cannot postpone this until $firstmakefile is ready ;-)
92c28edd
JH
746makedepend: makedepend.SH config.sh
747 sh ./makedepend.SH
cd4d8a96 748
d6a255e6
IZ
749# Cannot delegate rebuilding of t/perl to make to allow interlaced
750# test and minitest
751test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
3e3baf6d
TB
752 cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
753
994e9bc0
KH
754# Second branch is for testing without a tty or controling terminal.
755# See t/op/stat.t
3e3baf6d 756test check: test-prep
994e9bc0
KH
757 if (true </dev/tty) >/dev/null 2>&1; then \
758 cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
759 else \
760 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
761 fi
3e3baf6d 762
a0ed51b3 763utest ucheck: test-prep
994e9bc0
KH
764 if (true </dev/tty) >/dev/null 2>&1; then \
765 cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
766 else \
767 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
768 fi
a0ed51b3 769
3e3baf6d
TB
770# For testing without a tty or controling terminal. See t/op/stat.t
771test-notty: test-prep
6ee623d5 772 cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
2304df62 773
d96ebe2e 774# Can't depend on lib/Config.pm because that might be where miniperl
775# is crashing.
a35c6d74 776minitest: miniperl lib/re.pm
d96ebe2e 777 @echo "You may see some irrelevant test failures if you have been unable"
778 @echo "to build lib/Config.pm."
cd4d8a96 779 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
6ee623d5 780 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
16d20bd9 781
fb73857a 782# Handy way to run perlbug -ok without having to install and run the
84902520 783# installed perlbug. We don't re-run the tests here - we trust the user.
fb73857a 784# Please *don't* use this unless all tests pass.
1d2dff63 785# If you want to report test failures, use "make nok" instead.
188cd53f 786ok: utilities
92c28edd 787 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
84902520 788
105f9295 789okfile: utilities
92c28edd 790 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
105f9295 791
1d2dff63 792nok: utilities
92c28edd 793 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1d2dff63 794
b4e8cfaf
GS
795nokfile: utilities
796 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
797
85e6fe83 798clist: $(c)
92c28edd 799 echo $(c) | tr ' ' $(TRNL) >.clist
2304df62 800
85e6fe83 801hlist: $(h)
92c28edd 802 echo $(h) | tr ' ' $(TRNL) >.hlist
2304df62 803
85e6fe83 804shlist: $(sh)
92c28edd 805 echo $(sh) | tr ' ' $(TRNL) >.shlist
2304df62 806
4633a7c4 807pllist: $(pl)
92c28edd 808 echo $(pl) | tr ' ' $(TRNL) >.pllist
4633a7c4 809
92c28edd
JH
810Makefile: Makefile.SH ./config.sh
811 $(SHELL) Makefile.SH
760ac839 812
599a829f 813distcheck: FORCE
760ac839
LW
814 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
815
771c4874
IZ
816elc: emacs/cperl-mode.elc
817
818emacs/cperl-mode.elc: emacs/cperl-mode.el
819 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
820
d6a255e6
IZ
821etags: TAGS
822
823TAGS: emacs/cperl-mode.elc
3ee700d1 824 sh emacs/ptags
01e22528 825
d6a255e6
IZ
826ctags: tags
827
828# Let's hope make will not go into an infinite loop on case-unsensitive systems
829# This may also fail if . is in the head of the path, since perl will
830# require -Ilib
831tags: TAGS
832 perl emacs/e2ctags.pl TAGS > tags
3ee700d1 833
2304df62
AD
834# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
835# If this runs make out of memory, delete /usr/include lines.
836!NO!SUBS!
837
85e6fe83 838$eunicefix Makefile
2304df62
AD
839case `pwd` in
840*SH)
85e6fe83 841 $rm -f ../Makefile
cd4d8a96 842 $ln Makefile ../Makefile
2304df62
AD
843 ;;
844esac
cd4d8a96 845$rm -f $firstmakefile
5ff3f7a4
GS
846
847# Now do any special processing required before building.
848
849case "$ebcdic" in
850$define)
851 xxx=''
852 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
7a66b286 853case "$osname" in
25e9a2e3 854os390|posix-bc)
5ff3f7a4 855 rm -f y.tab.c y.tab.h
e9d08790 856 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
5ff3f7a4
GS
857 yacc -d perly.y >/dev/null 2>&1
858 if cmp -s y.tab.c perly.c; then
859 rm -f y.tab.c
860 else
861 echo "perly.y -> perly.c" >&2
862 mv -f y.tab.c perly.c
863 chmod u+w perly.c
c8dba6f3
GS
864 sed -e '/^#include "perl\.h"/a\
865\
866#define yydebug PL_yydebug\
867#define yynerrs PL_yynerrs\
868#define yyerrflag PL_yyerrflag\
869#define yychar PL_yychar\
c8dba6f3
GS
870#define yyval PL_yyval\
871#define yylval PL_yylval' \
872 -e '/YYSTYPE *yyval;/D' \
873 -e '/YYSTYPE *yylval;/D' \
874 -e '/int yychar,/,/yynerrs;/D' \
875 -e 's/int yydebug = 0;/yydebug = 0;/' \
876 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
877 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
5ff3f7a4
GS
878 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
879 xxx="$xxx perly.c"
880 fi
881 if cmp -s y.tab.h perly.h; then
882 rm -f y.tab.h
883 else
884 echo "perly.y -> perly.h" >&2
885 mv -f y.tab.h perly.h
886 xxx="$xxx perly.h"
887 fi
e9d08790 888 if cd x2p
5ff3f7a4 889 then
e9d08790 890 rm -f y.tab.c y.tab.h
5928ee40
JH
891 case "$osname" in
892 posix-bc)
893 # we are using two different yaccs in BS2000 Posix!
894 byacc a2p.y >/dev/null 2>&1
895 ;;
896 *) # e.g. os390
897 yacc a2p.y >/dev/null 2>&1
898 ;;
899 esac
e9d08790
JH
900 if cmp -s y.tab.c a2p.c
901 then
902 rm -f y.tab.c
903 else
904 echo "a2p.y -> a2p.c" >&2
905 mv -f y.tab.c a2p.c
906 chmod u+w a2p.c
907 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
908 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
909 xxx="$xxx a2p.c"
910 fi
911 # In case somebody yacc -d:ed the a2p.y.
912 if test -f y.tab.h
913 then
914 if cmp -s y.tab.h a2p.h
915 then
916 rm -f y.tab.h
917 else
918 echo "a2p.h -> a2p.h" >&2
919 mv -f y.tab.h a2p.h
920 xxx="$xxx a2p.h"
921 fi
922 fi
923 cd ..
5ff3f7a4 924 fi
7a66b286
JH
925 ;;
926vmesa)
927 # Do nothing in VM/ESA.
928 ;;
aa34f189 929*)
e9d08790 930 echo "'$osname' is an EBCDIC system I don't know that well." >&4
aa34f189 931 ;;
fe572743 932esac
5ff3f7a4
GS
933 case "$xxx" in
934 '') echo "No parser files were regenerated. That's okay." >&2 ;;
935 esac
936 ;;
937esac
938