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