This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Note that the shell's test uses eq etc for numbers, = etc for
[perl5.git] / Makefile.SH
CommitLineData
599a829f 1#! /bin/sh
a02608de 2case $PERL_CONFIG_SH in
2304df62 3'')
66b99216
JH
4 if test -f config.sh
5 then TOP=.
2304df62
AD
6 else
7 echo "Can't find config.sh."; exit 1
8 fi
9 . $TOP/config.sh
10 ;;
11esac
761ee4e8
BD
12
13# H.Merijn Brand [17 Feb 2004]
14# This comment is just to ensure that Configure will find variables that
15# are removed/replaced in patches on blead, but are still needed in the
16# 5.8.x, 5.6.x and 5.005.x maintainance tracks.
17# metaconfig -m will scan all .SH files on this level (not deeper), and
18# not in x2p and other subfolders. This file is as good as any .SH
19# patch references
20# #22227 $baserev
21# #22302 $yacc $byacc
22
08c92000
MB
23# H.Merijn Brand [30 Oct 2004]
24# Mentioned for the same reason for future reference
25# #23434 $d_strlcat $d_strlcpy
26
2304df62
AD
27: This forces SH files to create target in same directory as SH file.
28: This is so that make depend always knows where to find SH derivatives.
29case "$0" in
30*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
31esac
32
2304df62
AD
33case "$d_dosuid" in
34*define*) suidperl='suidperl' ;;
35*) suidperl='';;
36esac
37
d5d19f97 38linklibperl='$(LIBPERL)'
3c321fdc 39shrpldflags='$(LDDLFLAGS)'
6ee623d5 40ldlibpth=''
ac9901e0 41DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
d96ebe2e 42case "$useshrplib" in
43true)
f4db5405 44 # Prefix all runs of 'miniperl' and 'perl' with
5cf1d1f1 45 # $ldlibpth so that ./perl finds *this* shared libperl.
c1b49bc0
GS
46 case "$LD_LIBRARY_PATH" in
47 '')
48 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
49 *)
50 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
51 esac
6ee623d5 52
d5d19f97 53 pldlflags="$cccdlflags"
94c41b70 54 static_target='static_pic'
d96ebe2e 55 case "${osname}${osvers}" in
56 next4*)
3c321fdc 57 ld=libtool
58 lddlflags="-dynamic -undefined warning -framework System \
59 -compatibility_version 1 -current_version $patchlevel \
60 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
6ee623d5 61 ;;
f556e5b9
JH
62 rhapsody*|darwin*)
63 shrpldflags="${ldflags} -dynamiclib \
c1e7a127
W
64 -compatibility_version \
65 ${api_revision}.${api_version}.${api_subversion} \
f556e5b9 66 -current_version \
c1e7a127 67 ${revision}.${patchlevel}.${subversion} \
f556e5b9
JH
68 -install_name \$(shrpdir)/\$@"
69 ;;
5cf1d1f1 70 cygwin*)
8736538c
AS
71 linklibperl="-lperl"
72 ;;
73d40b3e 73 sunos*)
d5d19f97
UP
74 linklibperl="-lperl"
75 ;;
43039de7 76 netbsd*|freebsd[234]*|openbsd*)
099685bc
JH
77 linklibperl="-L. -lperl"
78 ;;
3c321fdc 79 aix*)
80 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
1553ab04 81 case "$osvers" in
549a6b10 82 3*) shrpldflags="$shrpldflags -e _nostart"
1553ab04 83 ;;
549a6b10 84 *) shrpldflags="$shrpldflags -b noentry"
1553ab04
TB
85 ;;
86 esac
9c839522 87 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
549a6b10 88 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
3c321fdc 89 ;;
1c7d1a19
GS
90 hpux*)
91 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
46193409 92 ;;
ac9901e0 93 os390*)
f2766b05 94 shrpldflags='-W l,dll'
ac9901e0
PP
95 linklibperl='libperl.x'
96 DPERL_EXTERNAL_GLOB=''
97 ;;
655635e8 98 esac
5cf1d1f1
JH
99 case "$ldlibpthname" in
100 '') ;;
101 *)
102 case "$osname" in
103 os2)
104 ldlibpth=''
105 ;;
5cf1d1f1
JH
106 *)
107 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
108 ;;
109 esac
c1b49bc0
GS
110 # Strip off any trailing :'s
111 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
5cf1d1f1
JH
112 ;;
113 esac
ecfc5424 114
9b9c6f34
AE
115 case "$ldlibpth" in
116 # Protect any spaces
117 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
118 esac
6904989c 119
9b9c6f34
AE
120 case "$osname" in
121 linux)
830717a7
AD
122 # If there is a pre-existing $libperl from a previous
123 # installation, Linux needs to use LD_PRELOAD to
124 # override the LD_LIBRARY_PATH setting. See the
125 # INSTALL file, under "Building a shared perl library".
126 # If there is no pre-existing $libperl, we don't need
127 # to do anything further.
128 if test -f $archlib/CORE/$libperl; then
68e8d60a 129 rm -f preload
d0ae58a5 130 cat <<'EOT' > preload
fde91635
JH
131#! /bin/sh
132lib=$1
133shift
134test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
135exec "$@"
136EOT
9b9c6f34
AE
137 chmod 755 preload
138 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
830717a7
AD
139 fi
140 ;;
9b9c6f34
AE
141 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
142 ;;
60d79001 143 esac
9b9c6f34 144
60d79001 145 ;;
9b9c6f34
AE
146
147*) pldlflags=''
148 static_target='static'
b1f5ad7d
JH
149 ;;
150esac
151
a0d0e21e
LW
152: Prepare dependency lists for Makefile.
153dynamic_list=' '
154for f in $dynamic_ext; do
155 : the dependency named here will never exist
ecfc5424 156 base=`echo "$f" | sed 's/.*\///'`
75f92628 157 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
a0d0e21e
LW
158done
159
160static_list=' '
a0d0e21e
LW
161for f in $static_ext; do
162 base=`echo "$f" | sed 's/.*\///'`
cd4d8a96 163 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
a0d0e21e
LW
164done
165
4318d5a0
GB
166nonxs_list=' '
167for f in $nonxs_ext; do
168 base=`echo "$f" | sed 's/.*\///'`
169 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
170done
171
2304df62 172echo "Extracting Makefile (with variable substitutions)"
655635e8 173$spitshell >Makefile <<!GROK!THIS!
a0d0e21e 174# Makefile.SH
85e6fe83
LW
175# This file is derived from Makefile.SH. Any changes made here will
176# be lost the next time you run Configure.
655635e8 177# Makefile is used to generate $firstmakefile. The only difference
178# is that $firstmakefile has the dependencies filled in at the end.
0de566d7 179
2304df62 180CC = $cc
232e078e 181LD = $ld
16d20bd9 182
2304df62
AD
183LDFLAGS = $ldflags
184CLDFLAGS = $ldflags
85e6fe83 185
2304df62
AD
186mallocsrc = $mallocsrc
187mallocobj = $mallocobj
85e6fe83 188LNS = $lns
4c901d04
JH
189# NOTE: some systems don't grok "cp -f". XXX Configure test needed?
190CPS = $cp
2304df62 191RMS = rm -f
85e6fe83
LW
192ranlib = $ranlib
193
16d20bd9
AD
194# The following are mentioned only to make metaconfig include the
195# appropriate questions in Configure. If you want to change these,
8e07c86e 196# edit config.sh instead, or specify --man1dir=/wherever on
16d20bd9
AD
197# installman commandline.
198bin = $installbin
199scriptdir = $scriptdir
d96ebe2e 200shrpdir = $archlibexp/CORE
16d20bd9
AD
201privlib = $installprivlib
202man1dir = $man1dir
203man1ext = $man1ext
204man3dir = $man3dir
205man3ext = $man3ext
206
85e6fe83
LW
207# The following are used to build and install shared libraries for
208# dynamic loading.
209LDDLFLAGS = $lddlflags
3c321fdc 210SHRPLDFLAGS = $shrpldflags
85e6fe83 211CCDLFLAGS = $ccdlflags
a0d0e21e 212DLSUFFIX = .$dlext
ecfc5424 213PLDLFLAGS = $pldlflags
d96ebe2e 214LIBPERL = $libperl
d5d19f97 215LLIBPERL= $linklibperl
ecfc5424 216SHRPENV = $shrpenv
a0d0e21e 217
94c41b70
AD
218# Static targets are ordinarily built without CCCDLFLAGS. However,
219# if building a shared libperl.so that might later be linked into
220# another application, then it might be appropriate to also build static
221# extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
222# for GNU cc). This is handled by ext/util/make_ext.
223STATIC = $static_target
224
6ee623d5 225# The following is used to include the current directory in
5cf1d1f1 226# the dynamic loader path you are building a shared libperl.
6ee623d5
GS
227LDLIBPTH = $ldlibpth
228
a0d0e21e
LW
229dynamic_ext = $dynamic_list
230static_ext = $static_list
4318d5a0
GB
231nonxs_ext = $nonxs_list
232ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
cd4d8a96 233DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
2304df62 234
9c839522 235libs = $perllibs $cryptlib
2304df62 236
443a5b98 237public = perl\$(EXE_EXT) $suidperl utilities translators
2304df62
AD
238
239shellflags = $shellflags
240
d96ebe2e 241# This is set to MAKE=$make if your $make command doesn't
242# do it for you.
243$make_set_make
4633a7c4 244
1fef16b3
JH
245# Mention $gmake here so it gets probed for by Configure.
246
dfe9444c 247# These variables may need to be manually set for non-Unix systems.
ccc7f9b3 248AR = $full_ar
dfe9444c
AD
249EXE_EXT = $_exe
250LIB_EXT = $_a
251OBJ_EXT = $_o
252PATH_SEP = $p_
4633a7c4
LW
253
254FIRSTMAKEFILE = $firstmakefile
255
256# Any special object files needed by this architecture, e.g. os2/os2.obj
257ARCHOBJS = $archobjs
258
89ada9f2 259.SUFFIXES: .c \$(OBJ_EXT) .i .s
cd4d8a96 260
d96ebe2e 261# grrr
262SHELL = $sh
655635e8 263
28e8609d
JH
264# how to tr(anslate) newlines
265TRNL = '$trnl'
266
82240bfc
JH
267OPTIMIZE = $optimize
268
3343e82c
JH
269EXTRAS = $extras
270
bf35c3f6
JH
271INSTALLPREFIXEXP = $prefix
272
d56c5707 273!GROK!THIS!
b7b35fc2 274# not used by Makefile but by installperl;
d56c5707
JH
275# mentioned here so that metaconfig picks these up
276# $installusrbinperl
277# $versiononly
b7b35fc2 278
8170cb12
JH
279case "${osname}:${osvers}" in
280darwin:*)
281$spitshell >>Makefile <<EOF
282
283# Your locales are broken (osname $osname, osvers $osvers)
284# and to avoid the numerous
285# perl: warning: Setting locale failed.
286# warnings during the build process we reset the locale variables.
287
288LC_ALL=C
289LANG=C
290LANGUAGE=C
291EOF
292 ;;
293esac
2304df62 294
85e6fe83 295## In the following dollars and backticks do not need the extra backslash.
2304df62
AD
296$spitshell >>Makefile <<'!NO!SUBS!'
297
75550b4e 298CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
89ada9f2 299
75550b4e 300CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
2304df62 301
2d9d8159
NC
302CONFIGPM = lib/Config.pm lib/Config_heavy.pl
303private = preplibrary $(CONFIGPM) lib/ExtUtils/Miniperl.pm
2304df62 304
4633a7c4
LW
305# Files to be built with variable substitution before miniperl
306# is available.
307sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
4755096e 308 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
4633a7c4 309
3ebb1980 310shextract = Makefile cflags config.h makeaperl makedepend \
4755096e 311 makedir myconfig writemain pod/Makefile
4633a7c4
LW
312
313# Files to be built with variable substitution after miniperl is
314# available. Dependencies handled manually below (for now).
2304df62 315
efb12ca0 316pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
41630250 317 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
4633a7c4 318
4755096e 319# lib/lib.pm is not listed here because it has a rule of its own.
efb12ca0 320plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
41630250 321 pod/pod2usage pod/podchecker pod/podselect
4633a7c4 322
4755096e 323addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
2304df62 324
5ad7e614
NC
325# Unicode data files generated by mktables
326unidatafiles = lib/unicore/Canonical.pl lib/unicore/Exact.pl \
327 lib/unicore/Properties lib/unicore/Decomposition.pl \
7ebf06b3 328 lib/unicore/CombiningClass.pl lib/unicore/Name.pl lib/unicore/PVA.pl
5ad7e614
NC
329
330# Directories of Unicode data files generated by mktables
331unidatadirs = lib/unicore/To lib/unicore/lib
332
fed7345c 333h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
dd2155a4
DM
334h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
335h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
219f41b1 336h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
68795e93 337h5 = utf8.h warnings.h
33b839e2 338h = $(h1) $(h2) $(h3) $(h4) $(h5)
2304df62 339
10bc17b6 340c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
a0ed51b3 341c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
dd2155a4 342c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
68795e93 343c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
2304df62 344
c015c5e4 345c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c opmini.c
2304df62 346
dd2155a4 347obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT)
cd4d8a96 348obj2 = 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)
68795e93 349obj3 = 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) numeric$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT)
655635e8 350
4633a7c4 351obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
2304df62
AD
352
353lintflags = -hbvxac
354
cd4d8a96 355.c$(OBJ_EXT):
d96ebe2e 356 $(CCCMD) $(PLDLFLAGS) $*.c
2304df62 357
89ada9f2
JH
358.c.i:
359 $(CCCMDSRC) -E $*.c > $*.i
360
361.c.s:
362 $(CCCMDSRC) -S $*.c
363
5ad7e614 364all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
248e23d9 365 @echo " ";
fcfe1ab7 366 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
909b3858 367
b2c07774 368.PHONY: all compile translators utilities
b27471b9 369
6ee623d5
GS
370compile: all
371 echo "testing compilation" > testcompile;
372 cd utils; $(MAKE) compile;
f4db5405 373 cd x2p; $(MAKE) compile;
6ee623d5
GS
374 cd pod; $(MAKE) compile;
375
2d9d8159 376translators: miniperl$(EXE_EXT) $(CONFIGPM) FORCE
6ee623d5 377 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
8e07c86e 378
2d9d8159 379utilities: miniperl$(EXE_EXT) $(CONFIGPM) $(plextract) lib/lib.pm FORCE
6ee623d5 380 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
909b3858 381
382
16d20bd9
AD
383# This is now done by installman only if you actually want the man pages.
384# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
85e6fe83
LW
385
386# Phony target to force checking subdirectories.
e50aee73 387# Apparently some makes require an action for the FORCE target.
869a466c 388.PHONY: FORCE
85e6fe83 389FORCE:
4633a7c4 390 @sh -c true
ac9901e0
PP
391!NO!SUBS!
392$spitshell >>Makefile <<!GROK!THIS!
85e6fe83 393
4ba7095c
JH
394# We do a copy of the op.c instead of a symlink because gcc gets huffy
395# if we have a symlink forest to another disk (it complains about too many
396# levels of symbolic links, even if we have only two)
397
c015c5e4
NC
398opmini.c: op.c
399 \$(CPS) op.c opmini.tmp
400 sh mv-if-diff opmini.tmp opmini.c
401
402opmini\$(OBJ_EXT): opmini.c
ac9901e0 403 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
bd0dd1d8 404
ac9901e0
PP
405!GROK!THIS!
406$spitshell >>Makefile <<'!NO!SUBS!'
517e7c64 407miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
92c28edd 408 $(CCCMD) $(PLDLFLAGS) $*.c
ecfc5424 409
92c28edd 410perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
e8827f64 411 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
92c28edd 412 sh mv-if-diff writemain.tmp perlmain.c
85e6fe83 413
e31d4690
PP
414!NO!SUBS!
415case "$osname" in
416cygwin)
417 ;; # Let cygwin/Makefile.SHs do its work.
418*)
419 $spitshell >>Makefile <<'!NO!SUBS!'
cd4d8a96 420perlmain$(OBJ_EXT): perlmain.c
92c28edd 421 $(CCCMD) $(PLDLFLAGS) $*.c
85e6fe83 422
e31d4690
PP
423!NO!SUBS!
424 ;;
425esac
426$spitshell >>Makefile <<'!NO!SUBS!'
a0d0e21e
LW
427# The file ext.libs is a list of libraries that must be linked in
428# for static extensions, e.g. -lm -lgdbm, etc. The individual
429# static extension Makefile's add to it.
fed7345c 430ext.libs: $(static_ext)
a0d0e21e 431 -@test -f ext.libs || touch ext.libs
85e6fe83 432
ecfc5424 433!NO!SUBS!
599a829f 434
d96ebe2e 435# How to build libperl. This is still rather convoluted.
599a829f 436# Load up custom Makefile.SH fragment for shared loading and executables:
8736538c 437case "$osname" in
8736538c
AS
438*)
439 Makefile_s="$osname/Makefile.SHs"
440 ;;
441esac
442
549a6b10
JH
443case "$osname" in
444aix)
445 $spitshell >>Makefile <<!GROK!THIS!
9c839522 446LIBS = $perllibs
5f9d9a17
ME
447# In AIX we need to change this for building Perl itself from
448# its earlier definition (which is for building external
449# extensions *after* Perl has been built and installed)
450CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
549a6b10
JH
451
452!GROK!THIS!
453 case "$useshrplib" in
454 define|true|[yY]*)
455 $spitshell >>Makefile <<'!NO!SUBS!'
456
457LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
458MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
459
460$(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
461 $(RMS) $(LIBPERL_NONSHR)
462 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
463
bd0dd1d8 464$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
a7089531
GS
465 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
466 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
549a6b10
JH
467
468MINIPERLEXP = $(MINIPERL_NONSHR)
469
470LIBPERLEXPORT = perl.exp
471
472!NO!SUBS!
473
474 ;;
475 *)
476 $spitshell >>Makefile <<'!NO!SUBS!'
477MINIPERLEXP = miniperl$(EXE_EXT)
478
479PERLEXPORT = perl.exp
480
481!NO!SUBS!
482 ;;
483 esac
484 $spitshell >>Makefile <<'!NO!SUBS!'
485perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
5c728af0 486 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp
549a6b10
JH
487 sh mv-if-diff perl.exp.tmp perl.exp
488
489!NO!SUBS!
490 ;;
2c2d71f5
JH
491os2)
492 $spitshell >>Makefile <<'!NO!SUBS!'
493MINIPERLEXP = miniperl
494
495perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
5c728af0 496 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp
2c2d71f5
JH
497 sh mv-if-diff perl.exp.tmp perl5.def
498
499!NO!SUBS!
500 ;;
549a6b10
JH
501esac
502
8736538c
AS
503if test -r $Makefile_s ; then
504 . $Makefile_s
d96ebe2e 505 $spitshell >>Makefile <<!GROK!THIS!
cd4d8a96 506
8736538c 507Makefile: $Makefile_s
cd4d8a96 508!GROK!THIS!
509else
f0efd8cf 510 $spitshell >>Makefile <<'!NO!SUBS!'
549a6b10 511$(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
9c9e9f08 512!NO!SUBS!
d96ebe2e 513 case "$useshrplib" in
514 true)
515 $spitshell >>Makefile <<'!NO!SUBS!'
6bdd71ef 516 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs)
3c321fdc 517!NO!SUBS!
518 case "$osname" in
519 aix)
520 $spitshell >>Makefile <<'!NO!SUBS!'
28e8609d 521 rm -f libperl$(OBJ_EXT)
3c321fdc 522 mv $@ libperl$(OBJ_EXT)
523 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
ecfc5424 524!NO!SUBS!
3c321fdc 525 ;;
526 esac
d96ebe2e 527 ;;
528 *)
529 $spitshell >>Makefile <<'!NO!SUBS!'
530 rm -f $(LIBPERL)
531 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
532 @$(ranlib) $(LIBPERL)
655635e8 533!NO!SUBS!
d96ebe2e 534 ;;
535 esac
599a829f
IZ
536 $spitshell >>Makefile <<'!NO!SUBS!'
537
538# How to build executables.
539
540# The $& notation tells Sequent machines that it can do a parallel make,
541# and is harmless otherwise.
542# The miniperl -w -MExporter line is a basic cheap test to catch errors
543# before make goes on to run preplibrary and then MakeMaker on extensions.
544# This is very handy because later errors are often caused by miniperl
545# build problems but that's not obvious to the novice.
546# The Module used here must not depend on Config or any extensions.
547
ecfb2188
GS
548!NO!SUBS!
549
550 case "${osname}${osvers}" in
e56d2c04 551 aix*|beos*)
ecfb2188 552 $spitshell >>Makefile <<'!NO!SUBS!'
bd0dd1d8 553miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
8fdf96e1
JH
554 $(CC) -o miniperl $(CLDFLAGS) \
555 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
ecfb2188 556 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
bd0dd1d8 557 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188
GS
558!NO!SUBS!
559 ;;
e56d2c04 560 next4*)
535d2540
JH
561 $spitshell >>Makefile <<'!NO!SUBS!'
562miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
8fdf96e1 563 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
535d2540
JH
564 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
565 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
566!NO!SUBS!
567 ;;
cb3fc426 568 darwin*)
986530ea
JH
569 case "$osvers" in
570 [1-6].*) ;;
571 *) case "$ldflags" in
572 *"-flat_namespace"*) ;;
573 *) # to allow opmini.o to override stuff in libperl.dylib
69625aa9
JH
574 $spitshell >>Makefile <<!NO!SUBS!
575NAMESPACEFLAGS = -force_flat_namespace
576!NO!SUBS!
986530ea
JH
577 ;;
578 esac
579 ;;
cb3fc426
JH
580 esac
581 $spitshell >>Makefile <<'!NO!SUBS!'
582miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
583 -@rm -f miniperl.xok
69625aa9 584 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \
cb3fc426
JH
585 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
586 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
cb3fc426
JH
587!NO!SUBS!
588 ;;
ecfb2188
GS
589 *)
590 $spitshell >>Makefile <<'!NO!SUBS!'
443a5b98 591miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
93c0359c 592 -@rm -f miniperl.xok
f913803b 593 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
a7089531 594 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
bd0dd1d8 595 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188
GS
596!NO!SUBS!
597 ;;
598 esac
599
600 $spitshell >>Makefile <<'!NO!SUBS!'
599a829f 601
443a5b98 602perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
93c0359c 603 -@rm -f miniperl.xok
f913803b 604 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 605
4ae3d70a
JH
606# Purify/Quantify Perls.
607
443a5b98 608pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 609 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 610
443a5b98 611purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 612 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
dbadb36a 613
443a5b98 614quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 615 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 616
7a834142
JH
617# Valgrind perl (currently Linux only)
618
619perl.valgrind.config: config.sh
620 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
621 @$(MAKE) perl.config.dashg
622 @echo "Checking usemymalloc='n' in config.sh..."
623 @grep "^usemymalloc=" config.sh
624 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
625 @echo "And of course you have to have valgrind..."
71152cd8 626 valgrind ./perl -e 1 2>/dev/null || exit 1
7a834142 627
4ae3d70a
JH
628# Third Degree Perl (Tru64 only)
629
719561de 630perl.config.dashg:
83f0ef60
JH
631 @echo "Checking optimize='-g' in config.sh..."
632 @grep "^optimize=" config.sh
633 @grep "^optimize='-g'" config.sh >/dev/null || exit 1
4ae3d70a
JH
634
635perl.third.config: config.sh
636 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
6e36760b 637 @$(MAKE) perl.config.dashg
83f0ef60
JH
638 @echo "Checking usemymalloc='n' in config.sh..."
639 @grep "^usemymalloc=" config.sh
640 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
170ba846 641
412c6516 642perl.third: /usr/bin/atom perl.third.config perl
dca31ef4 643 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
83f0ef60 644 @echo "Now you may run perl.third and then study perl.3log."
15615bfd 645
4ae3d70a
JH
646# Pixie Perls (Tru64 and IRIX only)
647
719561de 648perl.pixie.config: config.sh
4ae3d70a 649 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
6e36760b 650 @$(MAKE) perl.config.dashg
4ae3d70a 651
719561de 652perl.pixie.atom: /usr/bin/atom perl
4ae3d70a
JH
653 atom -tool pixie -L. -all -toolargs="-quiet" perl
654
655perl.pixie.irix: perl
656 pixie perl
657
719561de 658perl.pixie: /usr/bin/pixie perl.pixie.config perl
4ae3d70a
JH
659 if test -x /usr/bin/atom; then \
660 $(MAKE) perl.pixie.atom; \
661 else \
662 $(MAKE) perl.pixie.irix; \
663 fi
83f0ef60
JH
664 @echo "Now you may run perl.pixie and then run pixie."
665
666# Gprof Perl
667
668perl.config.dashpg:
669 @echo "Checking optimize='-pg' in config.sh..."
670 @grep "^optimize=" config.sh
64778e5f 671 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
83f0ef60
JH
672
673perl.gprof.config: config.sh
674 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
675 @$(MAKE) perl.config.dashpg
676
677perl.gprof: /usr/bin/gprof perl.gprof.config
64778e5f 678 @-rm -f perl
51a35ef1 679 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
83f0ef60 680 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
4ae3d70a 681
51a35ef1
JH
682# Gcov Perl
683
684perl.config.gcov:
685 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
686 @echo "Checking gccversion in config.sh..."
687 @grep "^gccversion=" config.sh
688 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
689 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
690 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
691 @grep "^ccflags=" config.sh
692 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
693
694perl.gcov: perl.config.gcov
695 @-rm -f perl
696 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
697 @echo "Now you may run perl.gcov and then run gcov some.c."
698
f946bb38
JH
699# Microperl. This is just a convenience thing if one happens to
700# build also the full Perl and therefore the real big Makefile:
f4db5405 701# usually one should manually explicitly issue the below command.
f946bb38 702
869a466c 703.PHONY: microperl
f946bb38
JH
704microperl:
705 $(MAKE) -f Makefile.micro
706
2304df62
AD
707# This version, if specified in Configure, does ONLY those scripts which need
708# set-id emulation. Suidperl must be setuid root. It contains the "taint"
709# checks as well as the special code to validate that the script in question
710# has been invoked correctly.
711
443a5b98 712suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 713 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 714
599a829f
IZ
715!NO!SUBS!
716
717fi
718
719$spitshell >>Makefile <<'!NO!SUBS!'
720
bf0dfd28 721sperl$(OBJ_EXT): perl.c $(h)
2304df62 722 $(RMS) sperl.c
85e6fe83 723 $(LNS) perl.c sperl.c
d96ebe2e 724 $(CCCMD) -DIAMSUID sperl.c
2304df62
AD
725 $(RMS) sperl.c
726
fec02dd3
AD
727# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
728# test -d lib/auto || mkdir lib/auto
5b7e50ea 729# We need to autosplit in two steps because VOS can't handle so many args
fec02dd3 730#
869a466c 731.PHONY: preplibrary
2d9d8159 732preplibrary: miniperl$(EXE_EXT) $(CONFIGPM) lib/lib.pm $(PREPLIBRARY_LIBPERL)
cd4d8a96 733 @sh ./makedir lib/auto
a0d0e21e 734 @echo " AutoSplitting perl library"
92c28edd 735 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
5b7e50ea
PG
736 autosplit_lib_modules(@ARGV)' lib/*.pm
737 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
738 autosplit_lib_modules(@ARGV)' lib/*/*.pm
abae58a6 739 $(MAKE) lib/re.pm
2304df62 740
75f92628 741# Take care to avoid modifying lib/Config.pm without reason
f4db5405 742# (If trying to create a new port and having problems with the configpm script,
fb73857a 743# try 'make minitest' and/or commenting out the tests at the end of configpm.)
2d9d8159
NC
744$(CONFIGPM): config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
745 $(LDLIBPTH) ./miniperl -Ilib configpm --heavy=lib/Config_heavy.pl configpm.tmp
746 sh mv-if-diff configpm.tmp lib/Config.pm
2304df62 747
2d9d8159 748lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl $(CONFIGPM)
e8827f64 749 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
92c28edd 750 sh mv-if-diff minimod.tmp $@
abae58a6 751 -touch lib/ExtUtils/Miniperl.pm
fed7345c 752
92c28edd 753lib/re.pm: ext/re/re.pm
abae58a6 754 cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
7cfc0d09 755
2d9d8159 756$(plextract): miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p
42c30c63 757 @-rm -f $@
a8e1d30b 758 $(LDLIBPTH) ./miniperl -I`pwd`/lib $@.PL
72b3d9b4 759
2d9d8159 760x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p.PL
36cf9c44 761 cd x2p; $(LDLIBPTH) $(MAKE) s2p
180c42e0 762
2d9d8159 763lib/lib.pm: miniperl$(EXE_EXT) $(CONFIGPM)
42c30c63 764 @-rm -f $@
4755096e
GS
765 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
766
6c684aee
JH
767unidatafiles $(unidatafiles): uni.data
768
769uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables
00da7942 770 cd lib/unicore && $(LDLIBPTH) ../../miniperl -I../../lib mktables -w
6c684aee 771 touch uni.data
5ad7e614 772
443a5b98 773extra.pods: miniperl$(EXE_EXT)
fec93702 774 -@test -f extra.pods && rm -f `cat extra.pods`
72b3d9b4 775 -@rm -f extra.pods
b4bc034f 776 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
72b3d9b4 777 nx=`echo $$x | sed -e "s/README\.//"`; \
40096396 778 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
72b3d9b4
GS
779 echo "pod/perl"$$nx".pod" >> extra.pods ; \
780 done
a8476e91
JH
781 -@rm -f pod/perlvms.pod
782 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
1400179b 783 -@rm -f pod/perldelta.pod
0dfdcd8a 784 -@test -f pod/perl592delta.pod && cd pod && $(LNS) perl592delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
443a5b98 785extras.make: perl$(EXE_EXT)
70eaf669 786 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
bf35c3f6 787
443a5b98 788extras.test: perl$(EXE_EXT)
70eaf669 789 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
bf35c3f6 790
443a5b98 791extras.install: perl$(EXE_EXT)
70eaf669 792 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
bf35c3f6 793
869a466c 794.PHONY: install install-strip install-all install-verbose install-silent \
5e2f386f 795 no-install install.perl install.man install.html
869a466c 796
0cf51544
JH
797META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
798 $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
799
f556e5b9 800install-strip:
70eaf669 801 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
f556e5b9 802
adbebc0b 803install install-all:
70eaf669 804 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
c77385cf 805
4ad019ef 806install-verbose:
70eaf669 807 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
c458b76c 808
4ad019ef 809install-silent:
70eaf669 810 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
4ad019ef
A
811
812no-install:
70eaf669 813 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
16d20bd9 814
70eaf669
IZ
815# Set this to an empty string to avoid an attempt of rebuild before install
816INSTALL_DEPENDENCE = all
817
818install.perl: $(INSTALL_DEPENDENCE) installperl
6ee623d5
GS
819 if [ -n "$(COMPILE)" ]; \
820 then \
821 cd utils; $(MAKE) compile; \
822 cd ../x2p; $(MAKE) compile; \
823 cd ../pod; $(MAKE) compile; \
83673e1f 824 else :; \
6ee623d5 825 fi
5a9231b0 826 $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
bf35c3f6 827 $(MAKE) extras.install
a0d0e21e 828
b1a1e9f1 829install.man: all installman
5a9231b0 830 $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
16d20bd9 831
84902520
TB
832# XXX Experimental. Hardwired values, but useful for testing.
833# Eventually Configure could ask for some of these values.
834install.html: all installhtml
40096396 835 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
6ee623d5 836 $(LDLIBPTH) ./perl installhtml \
84902520
TB
837 --podroot=. --podpath=. --recurse \
838 --htmldir=$(privlib)/html \
839 --htmlroot=$(privlib)/html \
840 --splithead=pod/perlipc \
841 --splititem=pod/perlfunc \
842 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
843 --verbose
844
16d20bd9 845
a0d0e21e 846# I now supply perly.c with the kits, so the following section is
0de566d7
DM
847# used only if you force bison to run by saying
848# make regen_perly
849# You normally shouldn't remake perly.[ch].
850
851.PHONY: regen_perly
852
853run_byacc:
854 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
855
856# this outputs perly.act and perly.tab
857regen_perly:
858 perl regen_perly.pl
56febc5e
AD
859
860# We don't want to regenerate perly.c and perly.h, but they might
861# appear out-of-date after a patch is applied or a new distribution is
862# made.
92c28edd 863perly.c: perly.y
b233458b
JH
864 -@sh -c true
865
92c28edd 866perly.h: perly.y
b233458b
JH
867 -@sh -c true
868
bd656b61 869# No compat3.sym here since and including the 5.004_50.
e4d5a464 870# No interp.sym since 5.005_03.
22c35a8c 871SYM = global.sym globvar.sym perlio.sym pp.sym
419eaf7b 872
22c35a8c 873SYMH = perlvars.h intrpvar.h thrdvar.h
419eaf7b 874
dae78bb1
IZ
875CHMOD_W = chmod +w
876
a8581515 877# The following files are generated automatically
9ad884cb 878# autodoc.pl: pod/perlapi.pod pod/perlintern.pod
c83f8f39
JH
879# bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
880# ext/B/B/Asmdata.pm
9ad884cb
JH
881# embed.pl: proto.h embed.h embedvar.h global.sym
882# perlapi.h perlapi.c
883# [* embed.pl needs pp.sym generated by opcode.pl! *]
884# keywords.pl: keywords.h
885# opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
c83f8f39
JH
886# regcomp.pl: regnodes.h
887# warnings.pl: warnings.h lib/warnings.pm
e50aee73
AD
888# The correct versions should be already supplied with the perl kit,
889# in case you don't have perl available.
36bb303b 890# To force them to be regenerated, run
9ad884cb 891# perl regen.pl
36bb303b
NC
892# with your existing copy of perl
893# (make regen_headers is kept for backwards compatibility)
e1354ed6 894
b4d4469a
JH
895AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
896 embed.h embedvar.h global.sym \
897 pod/perlintern.pod pod/perlapi.pod \
acfe0abc 898 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
c83f8f39
JH
899 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
900 warnings.h lib/warnings.pm
e1354ed6 901
869a466c
JH
902.PHONY: regen_headers regen_pods regen_all
903
9ad884cb
JH
904regen regen_headers: FORCE
905 -perl regen.pl
8e07c86e 906
4755096e 907regen_pods: FORCE
fcfe1ab7 908 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
4755096e 909
0de566d7 910regen_all: regen regen_pods
9fec149b 911
1aea71db
A
912.PHONY: manisort manicheck
913
914manisort: FORCE
f3a5d88c
JH
915 LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
916 LC_ALL=C sort -fdo MANIFEST MANIFEST)
1aea71db
A
917
918manicheck: FORCE
919 perl Porting/manicheck
920
a0d0e21e 921# Extensions:
4318d5a0
GB
922# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
923# automatically get built. There should ordinarily be no need to change
924# any of this part of makefile.
a0d0e21e
LW
925#
926# The dummy dependency is a place holder in case $(dynamic_ext) or
927# $(static_ext) is empty.
928#
929# DynaLoader may be needed for extensions that use Makefile.PL.
930
443a5b98 931$(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
94c41b70 932 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 933
443a5b98 934d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
92c28edd 935 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 936
443a5b98 937s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
94c41b70 938 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
2304df62 939
443a5b98 940n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
92c28edd 941 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
4318d5a0 942
869a466c
JH
943.PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
944 realclean _realcleaner clobber _clobber \
945 distclean veryclean _verycleaner
946
17b893d8 947clean: _tidy _mopup
70af249b 948
2edbd6da 949realclean: _realcleaner _mopup
fcfe1ab7 950 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
70af249b 951
b37ebb13 952_clobber:
5440bc8e 953 -@rm -f Cross/run-* Cross/to-* Cross/from-*
bf35c3f6 954 rm -f config.sh cppstdin Policy.sh extras.lst
b37ebb13
JH
955
956clobber: _realcleaner _mopup _clobber
70af249b
CS
957
958distclean: clobber
959
2edbd6da 960# Like distclean but also removes emacs backups and *.orig.
b37ebb13
JH
961veryclean: _verycleaner _mopup _clobber
962 -@rm -f Obsolete Wanted
2edbd6da 963
70af249b
CS
964# Do not 'make _mopup' directly.
965_mopup:
34433938 966 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c
1ed50e5b 967 -rmdir .depending
72b3d9b4 968 -@test -f extra.pods && rm -f `cat extra.pods`
b4bc034f 969 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
6c684aee 970 -rm -f perl.exp ext.libs extra.pods uni.data opmini.o
d96ebe2e 971 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1cfa4ec7 972 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
9d4d067b 973 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
6a966751 974 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
93c0359c 975 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
a0457be1 976 -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1ed50e5b
JH
977 -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
978 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
70af249b
CS
979
980# Do not 'make _tidy' directly.
981_tidy:
e3f83878
JH
982 -cd pod; $(LDLIBPTH) $(MAKE) clean
983 -cd utils; $(LDLIBPTH) $(MAKE) clean
984 -cd x2p; $(LDLIBPTH) $(MAKE) clean
4318d5a0 985 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 986 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
a0d0e21e 987 done
6ee623d5 988 rm -f testcompile compilelog
ff68c719 989
2edbd6da 990_cleaner1:
4633a7c4 991 -cd os2; rm -f Makefile
2edbd6da
JH
992 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
993 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
994 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
4318d5a0 995 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
2edbd6da 996 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
a0d0e21e 997 done
2edbd6da 998
2ad994b6 999# Some systems do not support "?", so keep these files separate.
2edbd6da 1000_cleaner2:
2ad994b6
PG
1001 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1002 rm -f core *perl.core t/core t/*perl.core
1003 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1004 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
a0d0e21e 1005 rm -rf $(addedbyconf)
0eb4e931 1006 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
3d40713c 1007 rm -f $(private) lib/Config.pod
ca12659b 1008 rm -rf $(unidatafiles) $(unidatadirs)
a0d0e21e 1009 rm -rf lib/auto
07a6e20d 1010 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
16d20bd9 1011 rm -f h2ph.man pstruct
a0d0e21e 1012 rm -rf .config
9b9c6f34 1013 rm -f preload
6ee623d5 1014 rm -f testcompile compilelog
26f17523
JH
1015 -rmdir lib/B lib/Data lib/Digest
1016 rm -rf lib/Encode
c61dfb31
JH
1017 -rmdir lib/Filter/Util lib/IO/Socket lib/IO
1018 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1019 -rmdir lib/threads lib/XS
ecfc5424 1020
f4db5405 1021_realcleaner:
2edbd6da
JH
1022 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1023 @$(LDLIBPTH) $(MAKE) _cleaner2
1024
f4db5405 1025_verycleaner:
2edbd6da
JH
1026 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1027 @$(LDLIBPTH) $(MAKE) _cleaner2
c94787a5 1028 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
2edbd6da 1029
2304df62
AD
1030# The following lint has practically everything turned on. Unfortunately,
1031# you have to wade through a lot of mumbo jumbo that can't be suppressed.
1032# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
1033# for that spot.
1034
869a466c 1035.PHONY: lint
bf0dfd28 1036lint: $(c)
2304df62
AD
1037 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
1038
fb73857a 1039# Need to unset during recursion to go out of loop.
1040# The README below ensures that the dependency list is never empty and
1041# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
cd4d8a96 1042
84902520 1043MAKEDEPEND = Makefile makedepend
cd4d8a96 1044
fb73857a 1045$(FIRSTMAKEFILE): README $(MAKEDEPEND)
cd4d8a96 1046 $(MAKE) depend MAKEDEPEND=
a0d0e21e 1047
599a829f 1048config.h: config_h.SH config.sh
655635e8 1049 $(SHELL) config_h.SH
1050
a0d0e21e 1051# When done, touch perlmain.c so that it doesn't get remade each time.
869a466c 1052.PHONY: depend
2304df62 1053depend: makedepend
fb73857a 1054 sh ./makedepend MAKE=$(MAKE)
a0d0e21e 1055 - test -s perlmain.c && touch perlmain.c
2304df62
AD
1056 cd x2p; $(MAKE) depend
1057
cd4d8a96 1058# Cannot postpone this until $firstmakefile is ready ;-)
92c28edd
JH
1059makedepend: makedepend.SH config.sh
1060 sh ./makedepend.SH
cd4d8a96 1061
1167a30e 1062.PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
869a466c 1063 test_tty test-tty _test_tty test_notty test-notty _test_notty \
e018f8be 1064 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1de9afcd 1065 test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
869a466c 1066 test.third check.third utest.third ucheck.third test_notty.third \
69bfbd2f 1067 test.deparse test_notty.deparse test_harness test_harness_notty \
b26492ee 1068 test.bytecompile minitest coretest test.taintwarn
869a466c 1069
ec861bc1
JH
1070# Cannot delegate rebuilding of t/perl to make
1071# to allow interlaced test and minitest
3e3baf6d 1072
1167a30e
IZ
1073TESTFILE=TEST
1074
1075_test_prep:
ec861bc1 1076 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
3e3baf6d 1077
1167a30e
IZ
1078# Architecture-neutral stuff:
1079
1080test_prep_pre: preplibrary utilities $(nonxs_ext)
1081
4caedec1 1082test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
5fe84fd2 1083 PERL=./perl $(MAKE) _test_prep
ec861bc1 1084
5fe84fd2 1085_test_tty:
2a30c5e0 1086 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
ec861bc1 1087
5fe84fd2 1088_test_notty:
2a30c5e0 1089 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
ec861bc1
JH
1090
1091# The second branch is for testing without a tty or controlling terminal,
1092# see t/op/stat.t
1093_test:
994e9bc0 1094 if (true </dev/tty) >/dev/null 2>&1; then \
1167a30e 1095 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
994e9bc0 1096 else \
1167a30e 1097 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
994e9bc0 1098 fi
3d8f1d64 1099 @echo "Ran tests" > t/rantests
a0ed51b3 1100
937aca76 1101test check: test_prep
ec861bc1
JH
1102 PERL=./perl $(MAKE) _test
1103
937aca76 1104test_tty: test_prep
5fe84fd2 1105 PERL=./perl $(MAKE) _test_tty
ec861bc1 1106
937aca76 1107test_notty: test_prep
5fe84fd2 1108 PERL=./perl $(MAKE) _test_notty
ec861bc1 1109
83f0ef60 1110utest ucheck test.utf8 check.utf8: test_prep
35117553 1111 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
ec861bc1 1112
5a6e071d
PJ
1113coretest: test_prep
1114 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1115
48a293f8 1116test-prep: test_prep
5fe84fd2
JH
1117
1118test-tty: test_tty
1119
1120test-notty: test_notty
1121
e018f8be
JH
1122# Torture testing
1123
1124test.torture torturetest: test_prep
1125 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1126
1de9afcd
RGS
1127# Targets for UTF16 testing:
1128
1129minitest.utf16: minitest.prep
1130 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1131 && $(LDLIBPTH) ./perl TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1132
1133test.utf16 check.utf16: test_prep
1134 PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1135
1136utest.utf16 ucheck.utf16: test_prep
1137 PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1138
7a834142
JH
1139# Targets for valgrind testing:
1140
1141test_prep.valgrind: test_prep perl.valgrind
1142 PERL=./perl $(MAKE) _test_prep
1143
1144test.valgrind check.valgrind: test_prep perl.valgrind.config
1145 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test
1146
1147utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind
1148 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1149
1150test_notty.valgrind: test_prep.valgrind perl.valgrind
1151 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1152
ec861bc1
JH
1153# Targets for Third Degree testing.
1154
9b99345a 1155test_prep.third: test_prep perl.third
5fe84fd2 1156 PERL=./perl.third $(MAKE) _test_prep
ec861bc1 1157
937aca76 1158test.third check.third: test_prep.third perl.third
ec861bc1
JH
1159 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1160
937aca76 1161utest.third ucheck.third: test_prep.third perl.third
35117553 1162 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
ec861bc1 1163
937aca76 1164test_notty.third: test_prep.third perl.third
5fe84fd2 1165 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
2304df62 1166
1df34986
AE
1167# Targets for Bytecode/ByteLoader testing.
1168
1169test.bytecompile: test_prep
1170 PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test
1171
35117553
JH
1172# Targets for Deparse testing.
1173
1174test.deparse: test_prep
1175 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1176
1177test_notty.deparse: test_prep
1178 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1179
b26492ee
RGS
1180# Targets to run the test suite with -t
1181
1182test.taintwarn: test_prep
1183 PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1184
1de9afcd 1185minitest.prep:
4fa3f26e 1186 -@test -f lib/lib.pm && test -f lib/Config.pm || \
5ad7e614 1187 $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
4fa3f26e 1188 @echo " "
d96ebe2e 1189 @echo "You may see some irrelevant test failures if you have been unable"
5ad7e614 1190 @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
4fa3f26e 1191 @echo " "
1de9afcd
RGS
1192
1193# Can't depend on lib/Config.pm because that might be where miniperl
1194# is crashing.
1195minitest: miniperl$(EXE_EXT) lib/re.pm minitest.prep
cd4d8a96 1196 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
43651d81 1197 && $(LDLIBPTH) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
16d20bd9 1198
1167a30e
IZ
1199# Test via harness
1200
1201test_harness: test_prep
1202 PERL=./perl $(MAKE) TESTFILE=harness _test
1203
69bfbd2f
RGS
1204test_harness_notty: test_prep
1205 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1206
fb73857a 1207# Handy way to run perlbug -ok without having to install and run the
84902520 1208# installed perlbug. We don't re-run the tests here - we trust the user.
fb73857a 1209# Please *don't* use this unless all tests pass.
1d2dff63 1210# If you want to report test failures, use "make nok" instead.
869a466c
JH
1211
1212.PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1213
188cd53f 1214ok: utilities
92c28edd 1215 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
84902520 1216
105f9295 1217okfile: utilities
92c28edd 1218 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
105f9295 1219
890b8eb0
NC
1220oknack: utilities
1221 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1222
1223okfilenack: utilities
1224 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1225
1d2dff63 1226nok: utilities
92c28edd 1227 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1d2dff63 1228
b4e8cfaf
GS
1229nokfile: utilities
1230 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1231
890b8eb0
NC
1232noknack: utilities
1233 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1234
1235nokfilenack: utilities
1236 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1237
869a466c
JH
1238.PHONY: clist hlist shlist pllist
1239
85e6fe83 1240clist: $(c)
92c28edd 1241 echo $(c) | tr ' ' $(TRNL) >.clist
2304df62 1242
85e6fe83 1243hlist: $(h)
92c28edd 1244 echo $(h) | tr ' ' $(TRNL) >.hlist
2304df62 1245
85e6fe83 1246shlist: $(sh)
92c28edd 1247 echo $(sh) | tr ' ' $(TRNL) >.shlist
2304df62 1248
4633a7c4 1249pllist: $(pl)
92c28edd 1250 echo $(pl) | tr ' ' $(TRNL) >.pllist
4633a7c4 1251
92c28edd
JH
1252Makefile: Makefile.SH ./config.sh
1253 $(SHELL) Makefile.SH
760ac839 1254
869a466c 1255.PHONY: distcheck
599a829f 1256distcheck: FORCE
760ac839
LW
1257 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1258
869a466c 1259.PHONY: elc
771c4874
IZ
1260elc: emacs/cperl-mode.elc
1261
1262emacs/cperl-mode.elc: emacs/cperl-mode.el
1263 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1264
869a466c
JH
1265.PHONY: etags ctags tags
1266
d6a255e6
IZ
1267etags: TAGS
1268
1269TAGS: emacs/cperl-mode.elc
3ee700d1 1270 sh emacs/ptags
01e22528 1271
d6a255e6
IZ
1272ctags: tags
1273
1274# Let's hope make will not go into an infinite loop on case-unsensitive systems
1275# This may also fail if . is in the head of the path, since perl will
1276# require -Ilib
1277tags: TAGS
1278 perl emacs/e2ctags.pl TAGS > tags
3ee700d1 1279
2304df62
AD
1280# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1281# If this runs make out of memory, delete /usr/include lines.
1282!NO!SUBS!
1283
85e6fe83 1284$eunicefix Makefile
2304df62
AD
1285case `pwd` in
1286*SH)
85e6fe83 1287 $rm -f ../Makefile
cd4d8a96 1288 $ln Makefile ../Makefile
2304df62
AD
1289 ;;
1290esac
cd4d8a96 1291$rm -f $firstmakefile
5ff3f7a4
GS
1292
1293# Now do any special processing required before building.
1294
1295case "$ebcdic" in
2d340b60 1296define)
5ff3f7a4 1297 xxx=''
2d340b60 1298 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
7a66b286 1299case "$osname" in
25e9a2e3 1300os390|posix-bc)
e9d08790 1301 if cd x2p
5ff3f7a4 1302 then
e9d08790 1303 rm -f y.tab.c y.tab.h
5928ee40
JH
1304 case "$osname" in
1305 posix-bc)
1306 # we are using two different yaccs in BS2000 Posix!
1307 byacc a2p.y >/dev/null 2>&1
1308 ;;
1309 *) # e.g. os390
1310 yacc a2p.y >/dev/null 2>&1
1311 ;;
1312 esac
e9d08790
JH
1313 if cmp -s y.tab.c a2p.c
1314 then
1315 rm -f y.tab.c
1316 else
1317 echo "a2p.y -> a2p.c" >&2
1318 mv -f y.tab.c a2p.c
1319 chmod u+w a2p.c
1320 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
f1f802f7 1321 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
e9d08790
JH
1322 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1323 xxx="$xxx a2p.c"
1324 fi
1325 # In case somebody yacc -d:ed the a2p.y.
1326 if test -f y.tab.h
1327 then
1328 if cmp -s y.tab.h a2p.h
1329 then
1330 rm -f y.tab.h
1331 else
1332 echo "a2p.h -> a2p.h" >&2
1333 mv -f y.tab.h a2p.h
1334 xxx="$xxx a2p.h"
1335 fi
1336 fi
1337 cd ..
5ff3f7a4 1338 fi
7a66b286
JH
1339 ;;
1340vmesa)
1341 # Do nothing in VM/ESA.
1342 ;;
aa34f189 1343*)
e9d08790 1344 echo "'$osname' is an EBCDIC system I don't know that well." >&4
aa34f189 1345 ;;
fe572743 1346esac
5ff3f7a4
GS
1347 case "$xxx" in
1348 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1349 esac
1350 ;;
1351esac
1352