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