Integrate mainline
[p5sagit/p5-mst-13.2.git] / Makefile.SH
1 #! /bin/sh
2 case $PERL_CONFIG_SH in
3 '')
4         if test -f config.sh
5                 then TOP=.
6         else
7                 echo "Can't find config.sh."; exit 1
8         fi
9         . $TOP/config.sh
10         ;;
11 esac
12 : This forces SH files to create target in same directory as SH file.
13 : This is so that make depend always knows where to find SH derivatives.
14 case "$0" in
15 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
16 esac
17
18 case "$d_dosuid" in
19 *define*) suidperl='suidperl' ;;
20 *) suidperl='';;
21 esac
22
23 linklibperl='$(LIBPERL)'
24 shrpldflags='$(LDDLFLAGS)'
25 ldlibpth=''
26 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
27 case "$useshrplib" in
28 true)
29         # Prefix all runs of 'miniperl' and 'perl' with
30         # $ldlibpth so that ./perl finds *this* shared libperl.
31         case "$LD_LIBRARY_PATH" in
32         '')
33                 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
34         *)
35                 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
36         esac
37
38         pldlflags="$cccdlflags"
39         case "${osname}${osvers}" in
40         next4*)
41                 ld=libtool
42                 lddlflags="-dynamic -undefined warning -framework System \
43                 -compatibility_version 1 -current_version $patchlevel \
44                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
45                 ;;
46         rhapsody*|darwin*)
47                 shrpldflags="${ldflags} -dynamiclib \
48                              -compatibility_version 1 \
49                              -current_version \
50                                 ${api_version}.${api_subversion} \
51                              -install_name \$(shrpdir)/\$@"
52                 ;;
53         cygwin*)
54                 linklibperl="-lperl"
55                 ;;
56         sunos*)
57                 linklibperl="-lperl"
58                 ;;
59         netbsd*|freebsd[234]*|openbsd*)
60                 linklibperl="-L. -lperl"
61                 ;;
62         aix*)
63                 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
64                 case "$osvers" in
65                 3*)     shrpldflags="$shrpldflags -e _nostart"
66                         ;;
67                 *)      shrpldflags="$shrpldflags -b noentry"
68                         ;;
69                 esac
70                 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
71                 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
72                 ;;
73         hpux*)
74                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
75                 ;;
76         os390*)
77             shrpldflags='-W l,dll'
78             linklibperl='libperl.x'
79             DPERL_EXTERNAL_GLOB=''
80             ;;
81         esac
82         case "$ldlibpthname" in
83         '') ;;
84         *)
85             case "$osname" in
86             os2)
87                 ldlibpth=''
88                 ;;
89             *)
90                 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
91                 ;;
92             esac
93             # Strip off any trailing :'s
94             ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
95             ;;
96         esac
97         ;;
98 *)      pldlflags=''
99         ;;
100 esac
101
102 : Prepare dependency lists for Makefile.
103 dynamic_list=' '
104 for f in $dynamic_ext; do
105     : the dependency named here will never exist
106       base=`echo "$f" | sed 's/.*\///'`
107     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
108 done
109
110 static_list=' '
111 for f in $static_ext; do
112         base=`echo "$f" | sed 's/.*\///'`
113         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
114 done
115
116 nonxs_list=' '
117 for f in $nonxs_ext; do
118     base=`echo "$f" | sed 's/.*\///'`
119     nonxs_list="$nonxs_list ext/$f/pm_to_blib"
120 done
121
122 # Handle the usage of different yaccs in posix-bc (During Configure we
123 # us yacc for perly.y and byacc for a2p.y.  The makefiles must use the
124 # same configuration for run_byacc!):
125 case "$osname" in
126     posix-bc)
127         byacc=$yacc
128         ;;
129 esac
130
131 echo "Extracting Makefile (with variable substitutions)"
132 $spitshell >Makefile <<!GROK!THIS!
133 # Makefile.SH
134 # This file is derived from Makefile.SH.  Any changes made here will
135 # be lost the next time you run Configure.
136 #  Makefile is used to generate $firstmakefile.  The only difference
137 #  is that $firstmakefile has the dependencies filled in at the end.
138 #
139 #
140 # I now supply perly.c with the kits, so don't remake perly.c without byacc
141 BYACC = $byacc
142 CC = $cc
143 LD = $ld
144
145 LDFLAGS = $ldflags
146 CLDFLAGS = $ldflags
147
148 mallocsrc = $mallocsrc
149 mallocobj = $mallocobj
150 LNS = $lns
151 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
152 CPS = $cp
153 RMS = rm -f
154 ranlib = $ranlib
155
156 # The following are mentioned only to make metaconfig include the
157 # appropriate questions in Configure.  If you want to change these,
158 # edit config.sh instead, or specify --man1dir=/wherever on
159 # installman commandline.
160 bin = $installbin
161 scriptdir = $scriptdir
162 shrpdir = $archlibexp/CORE
163 privlib = $installprivlib
164 man1dir = $man1dir
165 man1ext = $man1ext
166 man3dir = $man3dir
167 man3ext = $man3ext
168
169 # The following are used to build and install shared libraries for
170 # dynamic loading.
171 LDDLFLAGS = $lddlflags
172 SHRPLDFLAGS = $shrpldflags
173 CCDLFLAGS = $ccdlflags
174 DLSUFFIX = .$dlext
175 PLDLFLAGS = $pldlflags
176 LIBPERL = $libperl
177 LLIBPERL= $linklibperl
178 SHRPENV = $shrpenv
179
180 # The following is used to include the current directory in
181 # the dynamic loader path you are building a shared libperl.
182 LDLIBPTH = $ldlibpth
183
184 dynamic_ext = $dynamic_list
185 static_ext = $static_list
186 nonxs_ext = $nonxs_list
187 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
188 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
189
190 libs = $perllibs $cryptlib
191
192 public = perl $suidperl utilities translators
193
194 shellflags = $shellflags
195
196 # This is set to  MAKE=$make if your $make command doesn't
197 # do it for you.
198 $make_set_make
199
200 # These variables may need to be manually set for non-Unix systems.
201 AR = $full_ar
202 EXE_EXT = $_exe
203 LIB_EXT = $_a
204 OBJ_EXT = $_o
205 PATH_SEP = $p_
206
207 FIRSTMAKEFILE = $firstmakefile
208
209 # Any special object files needed by this architecture, e.g. os2/os2.obj
210 ARCHOBJS = $archobjs
211
212 .SUFFIXES: .c \$(OBJ_EXT)
213
214 # grrr
215 SHELL = $sh
216
217 # how to tr(anslate) newlines
218 TRNL = '$trnl'
219
220 !GROK!THIS!
221 # not used by Makefile but by installperl;
222 # mentioned here so that metaconfig picks these up
223 # $installusrbinperl
224 # $versiononly
225
226
227 ## In the following dollars and backticks do not need the extra backslash.
228 $spitshell >>Makefile <<'!NO!SUBS!'
229
230 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
231
232 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
233
234 # Files to be built with variable substitution before miniperl
235 # is available.
236 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
237         makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
238
239 shextract = Makefile cflags config.h makeaperl makedepend \
240         makedir myconfig writemain pod/Makefile
241
242 # Files to be built with variable substitution after miniperl is
243 # available.  Dependencies handled manually below (for now).
244
245 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
246         pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
247         pod/buildtoc.PL
248
249 # lib/lib.pm is not listed here because it has a rule of its own.
250 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
251         pod/pod2usage pod/podchecker pod/podselect \
252         pod/buildtoc
253
254 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
255
256 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
257 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
258 h3 = opcode.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
259 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
260 h5 = utf8.h warnings.h
261 h = $(h1) $(h2) $(h3) $(h4) $(h5)
262
263 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
264 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
265 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
266 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c
267
268 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
269
270 obj1 = $(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)
271 obj2 = hv$(OBJ_EXT) av$(OBJ_EXT) run$(OBJ_EXT) pp_hot$(OBJ_EXT) sv$(OBJ_EXT) pp$(OBJ_EXT) scope$(OBJ_EXT) pp_ctl$(OBJ_EXT) pp_sys$(OBJ_EXT)
272 obj3 = 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)
273
274 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
275
276 # Once perl has been Configure'd and built ok you build different
277 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
278 #       make clean; make LIBPERL=libperl<type>.a
279 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
280 # See cflags to understand how this works.
281 #
282 # This mechanism is getting clunky and might not even work any more.
283 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
284 #
285
286 lintflags = -hbvxac
287
288 .c$(OBJ_EXT):
289         $(CCCMD) $(PLDLFLAGS) $*.c
290
291 all: $(FIRSTMAKEFILE) miniperl extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext)
292         @echo " ";
293         @echo " Everything is up to date. 'make test' to run test suite."
294
295 compile: all
296         echo "testing compilation" > testcompile;
297         cd utils;  $(MAKE) compile;
298         cd x2p; $(MAKE) compile;
299         cd pod; $(MAKE) compile;
300
301 translators:    miniperl lib/Config.pm FORCE
302         @echo " "; echo "       Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
303
304 utilities:      miniperl lib/Config.pm $(plextract) lib/lib.pm FORCE
305         @echo " "; echo "       Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
306
307
308 # This is now done by installman only if you actually want the man pages.
309 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
310
311 # Phony target to force checking subdirectories.
312 # Apparently some makes require an action for the FORCE target.
313 FORCE:
314         @sh -c true
315 !NO!SUBS!
316 $spitshell >>Makefile <<!GROK!THIS!
317
318 # We do a copy of the op.c instead of a symlink because gcc gets huffy
319 # if we have a symlink forest to another disk (it complains about too many
320 # levels of symbolic links, even if we have only two)
321
322 opmini\$(OBJ_EXT): op.c config.h
323         \$(RMS) opmini.c
324         \$(CPS) op.c opmini.c
325         \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
326         \$(RMS) opmini.c
327
328 !GROK!THIS!
329 $spitshell >>Makefile <<'!NO!SUBS!'
330 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
331         $(CCCMD) $(PLDLFLAGS) $*.c
332
333 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
334         sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
335         sh mv-if-diff writemain.tmp perlmain.c
336
337 perlmain$(OBJ_EXT): perlmain.c
338         $(CCCMD) $(PLDLFLAGS) $*.c
339
340 # The file ext.libs is a list of libraries that must be linked in
341 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
342 # static extension Makefile's add to it.
343 ext.libs: $(static_ext)
344         -@test -f ext.libs || touch ext.libs
345
346 !NO!SUBS!
347
348 # How to build libperl.  This is still rather convoluted.
349 # Load up custom Makefile.SH fragment for shared loading and executables:
350 case "$osname" in
351 *)
352         Makefile_s="$osname/Makefile.SHs"
353         ;;
354 esac
355
356 case "$osname" in
357 aix)
358         $spitshell >>Makefile <<!GROK!THIS!
359 LIBS                    = $perllibs
360 # In AIX we need to change this for building Perl itself from
361 # its earlier definition (which is for building external
362 # extensions *after* Perl has been built and installed)
363 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
364
365 !GROK!THIS!
366         case "$useshrplib" in
367         define|true|[yY]*)
368                 $spitshell >>Makefile <<'!NO!SUBS!'
369
370 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
371 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
372
373 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
374         $(RMS) $(LIBPERL_NONSHR)
375         $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
376
377 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
378         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
379             opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
380
381 MINIPERLEXP             = $(MINIPERL_NONSHR)
382
383 LIBPERLEXPORT           = perl.exp
384
385 !NO!SUBS!
386                 
387                 ;;
388         *)      
389                 $spitshell >>Makefile <<'!NO!SUBS!'
390 MINIPERLEXP             = miniperl$(EXE_EXT)
391
392 PERLEXPORT              = perl.exp
393
394 !NO!SUBS!
395         ;;
396         esac
397         $spitshell >>Makefile <<'!NO!SUBS!'
398 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
399         ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
400         sh mv-if-diff perl.exp.tmp perl.exp
401
402 !NO!SUBS!
403         ;;
404 os2)
405         $spitshell >>Makefile <<'!NO!SUBS!'
406 MINIPERLEXP             = miniperl
407
408 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
409         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
410         sh mv-if-diff perl.exp.tmp perl5.def
411
412 !NO!SUBS!
413         ;;
414 esac
415
416 if test -r $Makefile_s ; then
417         . $Makefile_s
418         $spitshell >>Makefile <<!GROK!THIS!
419
420 Makefile: $Makefile_s
421 !GROK!THIS!
422 else
423         $spitshell >>Makefile <<'!NO!SUBS!'
424 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
425 !NO!SUBS!
426         case "$useshrplib" in
427         true)
428                 $spitshell >>Makefile <<'!NO!SUBS!'
429         $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj)
430 !NO!SUBS!
431                 case "$osname" in
432                 aix)
433                         $spitshell >>Makefile <<'!NO!SUBS!'
434         rm -f libperl$(OBJ_EXT)
435         mv $@ libperl$(OBJ_EXT)
436         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
437 !NO!SUBS!
438                         ;;
439                 esac
440                 ;;
441         *)
442                 $spitshell >>Makefile <<'!NO!SUBS!'
443         rm -f $(LIBPERL)
444         $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
445         @$(ranlib) $(LIBPERL)
446 !NO!SUBS!
447                 ;;
448         esac
449         $spitshell >>Makefile <<'!NO!SUBS!'
450
451 # How to build executables.
452
453 # The $& notation tells Sequent machines that it can do a parallel make,
454 # and is harmless otherwise.
455 # The miniperl -w -MExporter line is a basic cheap test to catch errors
456 # before make goes on to run preplibrary and then MakeMaker on extensions.
457 # This is very handy because later errors are often caused by miniperl
458 # build problems but that's not obvious to the novice.
459 # The Module used here must not depend on Config or any extensions.
460
461 !NO!SUBS!
462
463         case "${osname}${osvers}" in
464         next4*)
465                 $spitshell >>Makefile <<'!NO!SUBS!'
466 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
467         $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
468             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
469         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
470 !NO!SUBS!
471                 ;;
472         aix*)
473                 $spitshell >>Makefile <<'!NO!SUBS!'
474 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
475         $(CC) -o miniperl $(CLDFLAGS) \
476             `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
477             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
478         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
479 !NO!SUBS!
480                 ;;
481         *)
482                 $spitshell >>Makefile <<'!NO!SUBS!'
483 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
484         -@rm -f miniperl.xok
485         $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
486             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
487         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
488 !NO!SUBS!
489                 ;;
490         esac
491
492         $spitshell >>Makefile <<'!NO!SUBS!'
493
494 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
495         -@rm -f miniperl.xok
496         $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILING) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
497
498 # Purify/Quantify Perls.
499
500 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
501         $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
502
503 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
504         $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
505
506 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
507         $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
508
509 # Third Degree Perl (Tru64 only)
510
511 perl.config.dashg:
512         @echo "Checking optimize='-g' in config.sh..."
513         @grep "^optimize="     config.sh
514         @grep "^optimize='-g'" config.sh >/dev/null || exit 1
515
516 perl.third.config: config.sh
517         @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
518         @$(MAKE) perl.config.dashg
519         @echo "Checking usemymalloc='n' in config.sh..."
520         @grep "^usemymalloc="    config.sh
521         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
522
523 perl.third: /usr/bin/atom perl.third.config perl
524         atom -tool third -L. -all -gp -toolargs="-quiet -invalid -uninit heap+stack+partword+copy -min 0" perl
525         @echo "Now you may run perl.third and then study perl.3log."
526
527 # Pixie Perls (Tru64 and IRIX only)
528
529 perl.pixie.config: config.sh
530         @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
531         @$(MAKE) perl.config.dashg
532
533 perl.pixie.atom: /usr/bin/atom perl
534         atom -tool pixie -L. -all -toolargs="-quiet" perl
535
536 perl.pixie.irix: perl
537         pixie perl
538
539 perl.pixie: /usr/bin/pixie perl.pixie.config perl
540         if test -x /usr/bin/atom; then \
541           $(MAKE) perl.pixie.atom; \
542         else \
543           $(MAKE) perl.pixie.irix; \
544         fi
545         @echo "Now you may run perl.pixie and then run pixie."
546
547 # Gprof Perl
548
549 perl.config.dashpg:
550         @echo "Checking optimize='-pg' in config.sh..."
551         @grep "^optimize="      config.sh
552         @grep "^optimize='-pg'" config.sh >/dev/null || exit 1
553
554 perl.gprof.config: config.sh
555         @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
556         @$(MAKE) perl.config.dashpg
557
558 perl.gprof: /usr/bin/gprof perl.gprof.config
559         $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILING=-pg perl
560         @echo "Now you may run perl.gprof and then run gprof perl.gprof."
561
562 # Microperl.  This is just a convenience thing if one happens to
563 # build also the full Perl and therefore the real big Makefile:
564 # usually one should manually explicitly issue the below command.
565
566 microperl:
567         $(MAKE) -f Makefile.micro
568
569 # This version, if specified in Configure, does ONLY those scripts which need
570 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
571 # checks as well as the special code to validate that the script in question
572 # has been invoked correctly.
573
574 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
575         $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
576
577 !NO!SUBS!
578
579 fi
580
581 $spitshell >>Makefile <<'!NO!SUBS!'
582
583 sperl$(OBJ_EXT): perl.c $(h)
584         $(RMS) sperl.c
585         $(LNS) perl.c sperl.c
586         $(CCCMD) -DIAMSUID sperl.c
587         $(RMS) sperl.c
588
589 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
590 #       test -d lib/auto || mkdir lib/auto
591 #
592 preplibrary: miniperl lib/Config.pm lib/lib.pm lib/re.pm
593         @sh ./makedir lib/auto
594         @echo " AutoSplitting perl library"
595         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
596                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
597
598 # Take care to avoid modifying lib/Config.pm without reason
599 # (If trying to create a new port and having problems with the configpm script,
600 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
601 lib/Config.pm: config.sh miniperl configpm lib/re.pm
602         $(LDLIBPTH) ./miniperl configpm configpm.tmp
603         sh mv-if-diff configpm.tmp $@
604
605 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
606         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
607         sh mv-if-diff minimod.tmp $@
608
609 lib/re.pm: ext/re/re.pm
610         @-rm -f $@
611         cat ext/re/re.pm > $@
612
613 $(plextract):   miniperl lib/Config.pm
614         @-rm -f $@
615         $(LDLIBPTH) ./miniperl -Ilib $@.PL
616
617 lib/lib.pm:     miniperl lib/Config.pm
618         @-rm -f $@
619         $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
620
621 extra.pods: miniperl
622         -@test -f extra.pods && rm -f `cat extra.pods`
623         -@rm -f extra.pods
624         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
625             nx=`echo $$x | sed -e "s/README\.//"`; \
626             cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
627             echo "pod/perl"$$nx".pod" >> extra.pods ; \
628         done
629         -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
630
631 install-strip:
632         $(MAKE) STRIPFLAGS=-s install
633
634 install install-all:
635         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
636
637 install-verbose:
638         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
639
640 install-silent:
641         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
642
643 no-install:
644         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
645
646 install.perl:   all installperl
647         if [ -n "$(COMPILE)" ]; \
648         then \
649                 cd utils; $(MAKE) compile; \
650                 cd ../x2p; $(MAKE) compile; \
651                 cd ../pod; $(MAKE) compile; \
652         else :; \
653         fi
654         $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS)
655
656 install.man:    all installman
657         $(LDLIBPTH) ./perl installman $(INSTALLFLAGS)
658
659 # XXX Experimental. Hardwired values, but useful for testing.
660 # Eventually Configure could ask for some of these values.
661 install.html: all installhtml
662         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
663         $(LDLIBPTH) ./perl installhtml                   \
664       --podroot=. --podpath=. --recurse  \
665       --htmldir=$(privlib)/html     \
666       --htmlroot=$(privlib)/html    \
667       --splithead=pod/perlipc     \
668       --splititem=pod/perlfunc    \
669       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
670       --verbose
671
672
673 # I now supply perly.c with the kits, so the following section is
674 # used only if you force byacc to run by saying
675 #       make run_byacc
676 # Since we patch up the byacc output, the perly.fixer script needs
677 # to run with precisely the same version of byacc as I use.  You
678 # normally shouldn't remake perly.[ch].
679
680 check_byacc:
681         @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2'
682
683 run_byacc:      FORCE check_byacc
684         $(BYACC) -d perly.y
685         -chmod 664 perly.c perly.h
686         sh $(shellflags) ./perly.fixer y.tab.c perly.c
687         sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
688             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
689         sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
690         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
691         perl -i perlyline.pl perly.c
692         chmod 664 vms/perly_c.vms vms/perly_h.vms
693         perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
694
695 # We don't want to regenerate perly.c and perly.h, but they might
696 # appear out-of-date after a patch is applied or a new distribution is
697 # made.
698 perly.c: perly.y
699         -@sh -c true
700
701 perly.h: perly.y
702         -@sh -c true
703
704 PERLYVMS = vms/perly_c.vms vms/perly_h.vms
705
706 $(PERLYVMS):    perly.c perly.h vms/vms_yfix.pl
707         perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
708
709 # No compat3.sym here since and including the 5.004_50.
710 # No interp.sym since 5.005_03.
711 SYM  = global.sym globvar.sym perlio.sym pp.sym
712
713 SYMH = perlvars.h intrpvar.h thrdvar.h
714
715 CHMOD_W = chmod +w
716
717 # The following files are generated automatically
718 #       keywords.pl:    keywords.h
719 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
720 # [* embed.pl needs pp.sym generated by opcode.pl! *]
721 #       embed.pl:       proto.h embed.h embedvar.h global.sym objXSUB.h
722 #                       perlapi.h perlapi.c pod/perlintern.pod
723 #                       pod/perlapi.pod
724 #       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
725 #                       ext/B/B/Asmdata.pm
726 #       regcomp.pl:     regnodes.h
727 #       warnings.pl:    warnings.h lib/warnings.pm
728 # The correct versions should be already supplied with the perl kit,
729 # in case you don't have perl available.
730 # To force them to be regenerated, type
731 #       make regen_headers
732
733 keywords.h:     keywords.pl
734         -perl keywords.pl
735
736 OPCODE_PL_OUTPUT = opcode.h opnames.h pp_proto.h pp.sym
737
738 $(OPCODE_PL_OUTPUT): opcode.pl
739         -perl opcode.pl
740
741 # Really the prerequisites for the next rule  should only be "embed.pl pp.sym"
742 # Writing it this way gives make a big hint to always run opcode.pl before
743 # embed.pl. The alternative - running embed.pl then opcode.pl causes embed.pl
744 # to be re-run next make invocation, and then all object files get recompiled.
745
746 proto.h embed.h embedvar.h global.sym objXSUB.h perlapi.h perlapi.c pod/perlintern.pod pod/perlapi.pod: embed.pl $(OPCODE_PL_OUTPUT)
747         -perl embed.pl
748
749 ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm: bytecode.pl
750         -perl bytecode.pl
751
752 regnodes.h:     regcomp.pl
753         -perl regcomp.pl
754
755 warnings.h lib/warnings.pm: warnings.pl
756         -perl warnings.pl
757
758 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
759                 embed.h embedvar.h global.sym \
760                 pod/perlintern.pod pod/perlapi.pod \
761                 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
762                 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
763                 warnings.h lib/warnings.pm
764
765 regen_headers:  FORCE
766         -$(CHMOD_W) $(AUTOGEN_FILES)
767         -perl keywords.pl
768         -perl opcode.pl
769         -perl embed.pl
770         -perl bytecode.pl
771         -perl regcomp.pl
772         -perl warnings.pl
773
774 regen_pods:     FORCE
775         -cd pod; $(LDLIBPTH) make regen_pods
776
777 regen_all: $(PERLYVMS) regen_headers regen_pods
778
779 # Extensions:
780 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
781 # automatically get built.  There should ordinarily be no need to change
782 # any of this part of makefile.
783 #
784 # The dummy dependency is a place holder in case $(dynamic_ext) or
785 # $(static_ext) is empty.
786 #
787 # DynaLoader may be needed for extensions that use Makefile.PL.
788
789 $(DYNALOADER):  miniperl preplibrary FORCE
790         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
791
792 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
793         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
794
795 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
796         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
797
798 n_dummy $(nonxs_ext):   miniperl preplibrary $(DYNALOADER) FORCE
799         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
800
801 clean:          _tidy _mopup
802
803 realclean:      _realcleaner _mopup
804         @echo "Note that make realclean does not delete config.sh or Policy.sh"
805
806 _clobber:
807         -@rm -f Cross/run-* Cross/to-* Cross/from-*
808         rm -f config.sh cppstdin Policy.sh
809
810 clobber:        _realcleaner _mopup _clobber
811
812 distclean:      clobber
813
814 # Like distclean but also removes emacs backups and *.orig.
815 veryclean:      _verycleaner _mopup _clobber
816         -@rm -f Obsolete Wanted
817
818 # Do not 'make _mopup' directly.
819 _mopup:
820         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
821         -@test -f extra.pods && rm -f `cat extra.pods`
822         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
823         -rm -f perl.exp ext.libs extra.pods opmini.o
824         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
825         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
826         -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
827         -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
828         -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
829         rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
830
831 # Do not 'make _tidy' directly.
832 _tidy:
833         -cd pod; $(LDLIBPTH) $(MAKE) clean
834         -cd utils; $(LDLIBPTH) $(MAKE) clean
835         -cd x2p; $(LDLIBPTH) $(MAKE) clean
836         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
837         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
838         done
839         rm -f testcompile compilelog
840
841 _cleaner1:
842         -cd os2; rm -f Makefile
843         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
844         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
845         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
846         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
847         $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
848         done
849
850 _cleaner2:
851         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 t/rantests .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
852         rm -rf $(addedbyconf)
853         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
854         rm -f $(private)
855         rm -rf lib/auto
856         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
857         rm -f h2ph.man pstruct
858         rm -rf .config
859         rm -f testcompile compilelog
860         -rmdir lib/B lib/Data lib/Digest lib/Encode lib/IO/Socket lib/IO lib/Filter/Util lib/List lib/MIME lib/PerlIO lib/Scalar lib/Sys lib/Thread lib/XS
861
862 _realcleaner:
863         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
864         @$(LDLIBPTH) $(MAKE) _cleaner2
865
866 _verycleaner:
867         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
868         @$(LDLIBPTH) $(MAKE) _cleaner2
869         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
870
871 # The following lint has practically everything turned on.  Unfortunately,
872 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
873 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
874 # for that spot.
875
876 lint: $(c)
877         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
878
879 # Need to unset during recursion to go out of loop.
880 # The README below ensures that the dependency list is never empty and
881 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
882
883 MAKEDEPEND = Makefile makedepend
884
885 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
886         $(MAKE) depend MAKEDEPEND=
887
888 config.h: config_h.SH config.sh
889         $(SHELL) config_h.SH
890
891 # When done, touch perlmain.c so that it doesn't get remade each time.
892 depend: makedepend
893         sh ./makedepend MAKE=$(MAKE)
894         - test -s perlmain.c && touch perlmain.c
895         cd x2p; $(MAKE) depend
896
897 # Cannot postpone this until $firstmakefile is ready ;-)
898 makedepend: makedepend.SH config.sh
899         sh ./makedepend.SH
900
901 # Cannot delegate rebuilding of t/perl to make
902 # to allow interlaced test and minitest
903
904 _test_prep: $(PERL)$(EXE_EXT)
905         cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
906
907 test_prep: miniperl ./perl$(EXE_EXT) preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
908         PERL=./perl $(MAKE) _test_prep
909
910 _test_tty:
911         cd t && $(LDLIBPTH) $(PERL_DEBUG) $(PERL) TEST $(TEST_ARGS) </dev/tty
912
913 _test_notty:
914         cd t && $(LDLIBPTH) $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(PERL) TEST $(TEST_ARGS)
915
916 # The second branch is for testing without a tty or controlling terminal,
917 # see t/op/stat.t
918 _test:
919         if (true </dev/tty) >/dev/null 2>&1; then \
920           $(MAKE) TEST_ARGS=$(TEST_ARGS) _test_tty   ; \
921         else \
922           $(MAKE) TEST_ARGS=$(TEST_ARGS) _test_notty ; \
923         fi
924         @echo "Ran tests" > t/rantests
925
926 test check: test_prep
927         PERL=./perl $(MAKE) _test
928
929 test_tty: test_prep
930         PERL=./perl $(MAKE) _test_tty
931
932 test_notty: test_prep
933         PERL=./perl $(MAKE) _test_notty
934
935 utest ucheck test.utf8 check.utf8: test_prep
936         PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
937
938 test-prep:      test_prep
939
940 test-tty:       test_tty
941
942 test-notty:     test_notty
943
944 # Targets for Third Degree testing.
945
946 test_prep.third: test_prep perl.third
947         PERL=./perl.third $(MAKE) _test_prep
948
949 test.third check.third: test_prep.third perl.third
950         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
951
952 utest.third ucheck.third: test_prep.third perl.third
953         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
954
955 test_notty.third: test_prep.third perl.third
956         PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
957
958 # Targets for Deparse testing.
959
960 test.deparse:   test_prep
961         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
962
963 test_notty.deparse:     test_prep
964         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
965
966 # Can't depend on lib/Config.pm because that might be where miniperl
967 # is crashing.
968 minitest: miniperl lib/re.pm
969         @echo "You may see some irrelevant test failures if you have been unable"
970         @echo "to build lib/Config.pm."
971         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
972                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t pragma/*.t </dev/tty
973
974 # Handy way to run perlbug -ok without having to install and run the
975 # installed perlbug. We don't re-run the tests here - we trust the user.
976 # Please *don't* use this unless all tests pass.
977 # If you want to report test failures, use "make nok" instead.
978 ok:     utilities
979         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
980
981 okfile: utilities
982         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
983
984 oknack: utilities
985         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
986
987 okfilenack:     utilities
988         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
989
990 nok:    utilities
991         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
992
993 nokfile:        utilities
994         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
995
996 noknack:        utilities
997         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
998
999 nokfilenack:    utilities
1000         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1001
1002 clist:  $(c)
1003         echo $(c) | tr ' ' $(TRNL) >.clist
1004
1005 hlist:  $(h)
1006         echo $(h) | tr ' ' $(TRNL) >.hlist
1007
1008 shlist: $(sh)
1009         echo $(sh) | tr ' ' $(TRNL) >.shlist
1010
1011 pllist: $(pl)
1012         echo $(pl) | tr ' ' $(TRNL) >.pllist
1013
1014 Makefile: Makefile.SH ./config.sh
1015         $(SHELL) Makefile.SH
1016
1017 distcheck: FORCE
1018         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1019
1020 elc:    emacs/cperl-mode.elc
1021
1022 emacs/cperl-mode.elc: emacs/cperl-mode.el
1023         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1024
1025 etags:  TAGS
1026
1027 TAGS: emacs/cperl-mode.elc
1028         sh emacs/ptags
1029
1030 ctags:  tags
1031
1032 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1033 # This may also fail if . is in the head of the path, since perl will
1034 # require -Ilib
1035 tags:   TAGS
1036         perl emacs/e2ctags.pl TAGS > tags
1037
1038 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1039 # If this runs make out of memory, delete /usr/include lines.
1040 !NO!SUBS!
1041
1042 $eunicefix Makefile
1043 case `pwd` in
1044 *SH)
1045     $rm -f ../Makefile
1046     $ln Makefile ../Makefile
1047     ;;
1048 esac
1049 $rm -f $firstmakefile
1050
1051 # Now do any special processing required before building.
1052
1053 case "$ebcdic" in
1054 $define)
1055     xxx=''
1056     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
1057 case "$osname" in
1058 os390|posix-bc)
1059     rm -f y.tab.c y.tab.h
1060     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
1061     yacc -d perly.y >/dev/null 2>&1
1062     if cmp -s y.tab.c perly.c; then
1063         rm -f y.tab.c
1064     else
1065         echo "perly.y -> perly.c" >&2
1066         mv -f y.tab.c perly.c
1067         chmod u+w perly.c
1068         sed -e '/^#include "perl\.h"/a\
1069 \
1070 #define yydebug    PL_yydebug\
1071 #define yynerrs    PL_yynerrs\
1072 #define yyerrflag  PL_yyerrflag\
1073 #define yychar     PL_yychar\
1074 #define yyval      PL_yyval\
1075 #define yylval     PL_yylval'                           \
1076             -e '/YYSTYPE *yyval;/D'                     \
1077             -e '/YYSTYPE *yylval;/D'                    \
1078             -e '/int  yychar,/,/yynerrs;/D'             \
1079             -e 's/int yydebug = 0;/yydebug = 0;/'       \
1080             -e 's/[^_]realloc(/PerlMem_realloc(/g'      \
1081             -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1082             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1083         xxx="$xxx perly.c"
1084     fi
1085     if cmp -s y.tab.h perly.h; then
1086         rm -f y.tab.h
1087     else
1088         echo "perly.y -> perly.h" >&2
1089         mv -f y.tab.h perly.h
1090         xxx="$xxx perly.h"
1091     fi
1092     if cd x2p
1093     then
1094         rm -f y.tab.c y.tab.h
1095         case "$osname" in
1096         posix-bc)
1097            # we are using two different yaccs in BS2000 Posix!
1098            byacc a2p.y >/dev/null 2>&1
1099            ;;
1100         *) # e.g. os390
1101            yacc  a2p.y >/dev/null 2>&1
1102            ;;
1103         esac
1104         if cmp -s y.tab.c a2p.c
1105         then
1106             rm -f y.tab.c
1107         else
1108             echo "a2p.y -> a2p.c" >&2
1109             mv -f y.tab.c a2p.c
1110             chmod u+w a2p.c
1111             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1112                 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1113                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1114             xxx="$xxx a2p.c"
1115         fi
1116         # In case somebody yacc -d:ed the a2p.y.
1117         if test -f y.tab.h
1118         then
1119             if cmp -s y.tab.h a2p.h
1120             then
1121                 rm -f y.tab.h
1122             else
1123                 echo "a2p.h -> a2p.h" >&2
1124                 mv -f y.tab.h a2p.h
1125                 xxx="$xxx a2p.h"
1126             fi
1127         fi
1128         cd ..
1129     fi
1130     ;;
1131 vmesa)
1132     # Do nothing in VM/ESA.
1133     ;;
1134 *)
1135     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1136     ;;
1137 esac
1138     case "$xxx" in
1139     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1140     esac
1141     ;;
1142 esac
1143