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