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