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