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