This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Thinko.
[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         case "${osname}${osvers}" in
40         next4*)
41                 ld=libtool
42                 lddlflags="-dynamic -undefined warning -framework System \
43                 -compatibility_version 1 -current_version $patchlevel \
44                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
45                 ;;
46         rhapsody*|darwin*)
47                 shrpldflags="${ldflags} -dynamiclib \
48                             -compatibility_version \
49                                 ${api_revision}.${api_version}.${api_subversion} \
50                              -current_version \
51                                 ${revision}.${patchlevel}.${subversion} \
52                              -install_name \$(shrpdir)/\$@"
53                 ;;
54         cygwin*)
55                 linklibperl="-lperl"
56                 ;;
57         sunos*)
58                 linklibperl="-lperl"
59                 ;;
60         netbsd*|freebsd[234]*|openbsd*)
61                 linklibperl="-L. -lperl"
62                 ;;
63         aix*)
64                 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
65                 case "$osvers" in
66                 3*)     shrpldflags="$shrpldflags -e _nostart"
67                         ;;
68                 *)      shrpldflags="$shrpldflags -b noentry"
69                         ;;
70                 esac
71                 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
72                 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
73                 ;;
74         hpux*)
75                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
76                 ;;
77         os390*)
78             shrpldflags='-W l,dll'
79             linklibperl='libperl.x'
80             DPERL_EXTERNAL_GLOB=''
81             ;;
82         esac
83         case "$ldlibpthname" in
84         '') ;;
85         *)
86             case "$osname" in
87             os2)
88                 ldlibpth=''
89                 ;;
90             *)
91                 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
92                 ;;
93             esac
94             # Strip off any trailing :'s
95             ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
96             ;;
97         esac
98         ;;
99 *)      pldlflags=''
100         ;;
101 esac
102
103 : Prepare dependency lists for Makefile.
104 dynamic_list=' '
105 for f in $dynamic_ext; do
106     : the dependency named here will never exist
107       base=`echo "$f" | sed 's/.*\///'`
108     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
109 done
110
111 static_list=' '
112 for f in $static_ext; do
113         base=`echo "$f" | sed 's/.*\///'`
114         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
115 done
116
117 nonxs_list=' '
118 for f in $nonxs_ext; do
119     base=`echo "$f" | sed 's/.*\///'`
120     nonxs_list="$nonxs_list ext/$f/pm_to_blib"
121 done
122
123 # Handle the usage of different yaccs in posix-bc (During Configure we
124 # us yacc for perly.y and byacc for a2p.y.  The makefiles must use the
125 # same configuration for run_byacc!):
126 case "$osname" in
127     posix-bc)
128         byacc=$yacc
129         ;;
130 esac
131
132 echo "Extracting Makefile (with variable substitutions)"
133 $spitshell >Makefile <<!GROK!THIS!
134 # Makefile.SH
135 # This file is derived from Makefile.SH.  Any changes made here will
136 # be lost the next time you run Configure.
137 #  Makefile is used to generate $firstmakefile.  The only difference
138 #  is that $firstmakefile has the dependencies filled in at the end.
139 #
140 #
141 # I now supply perly.c with the kits, so don't remake perly.c without byacc
142 BYACC = $byacc
143 CC = $cc
144 LD = $ld
145
146 LDFLAGS = $ldflags
147 CLDFLAGS = $ldflags
148
149 mallocsrc = $mallocsrc
150 mallocobj = $mallocobj
151 LNS = $lns
152 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
153 CPS = $cp
154 RMS = rm -f
155 ranlib = $ranlib
156
157 # The following are mentioned only to make metaconfig include the
158 # appropriate questions in Configure.  If you want to change these,
159 # edit config.sh instead, or specify --man1dir=/wherever on
160 # installman commandline.
161 bin = $installbin
162 scriptdir = $scriptdir
163 shrpdir = $archlibexp/CORE
164 privlib = $installprivlib
165 man1dir = $man1dir
166 man1ext = $man1ext
167 man3dir = $man3dir
168 man3ext = $man3ext
169
170 # The following are used to build and install shared libraries for
171 # dynamic loading.
172 LDDLFLAGS = $lddlflags
173 SHRPLDFLAGS = $shrpldflags
174 CCDLFLAGS = $ccdlflags
175 DLSUFFIX = .$dlext
176 PLDLFLAGS = $pldlflags
177 LIBPERL = $libperl
178 LLIBPERL= $linklibperl
179 SHRPENV = $shrpenv
180
181 # The following is used to include the current directory in
182 # the dynamic loader path you are building a shared libperl.
183 LDLIBPTH = $ldlibpth
184
185 dynamic_ext = $dynamic_list
186 static_ext = $static_list
187 nonxs_ext = $nonxs_list
188 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
189 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
190
191 libs = $perllibs $cryptlib
192
193 public = perl\$(EXE_EXT) $suidperl utilities translators
194
195 shellflags = $shellflags
196
197 # This is set to  MAKE=$make if your $make command doesn't
198 # do it for you.
199 $make_set_make
200
201 # Mention $gmake here so it gets probed for by Configure.
202
203 # These variables may need to be manually set for non-Unix systems.
204 AR = $full_ar
205 EXE_EXT = $_exe
206 LIB_EXT = $_a
207 OBJ_EXT = $_o
208 PATH_SEP = $p_
209
210 FIRSTMAKEFILE = $firstmakefile
211
212 # Any special object files needed by this architecture, e.g. os2/os2.obj
213 ARCHOBJS = $archobjs
214
215 .SUFFIXES: .c \$(OBJ_EXT) .i .s
216
217 # grrr
218 SHELL = $sh
219
220 # how to tr(anslate) newlines
221 TRNL = '$trnl'
222
223 OPTIMIZE = $optimize
224
225 EXTRAS = $extras
226
227 INSTALLPREFIXEXP = $prefix
228
229 !GROK!THIS!
230 # not used by Makefile but by installperl;
231 # mentioned here so that metaconfig picks these up
232 # $installusrbinperl
233 # $versiononly
234
235 case "${osname}:${osvers}" in
236 darwin:*)
237 $spitshell >>Makefile <<EOF
238
239 # Your locales are broken (osname $osname, osvers $osvers)
240 # and to avoid the numerous
241 # perl: warning: Setting locale failed.
242 # warnings during the build process we reset the locale variables.
243
244 LC_ALL=C
245 LANG=C
246 LANGUAGE=C
247 EOF
248         ;;
249 esac
250
251 ## In the following dollars and backticks do not need the extra backslash.
252 $spitshell >>Makefile <<'!NO!SUBS!'
253
254 CCCMD    = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $(LIBPERL) $@`
255
256 CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $(LIBPERL) $<`
257
258 private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
259
260 # Files to be built with variable substitution before miniperl
261 # is available.
262 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
263         makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
264
265 shextract = Makefile cflags config.h makeaperl makedepend \
266         makedir myconfig writemain pod/Makefile
267
268 # Files to be built with variable substitution after miniperl is
269 # available.  Dependencies handled manually below (for now).
270
271 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
272         pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
273         pod/buildtoc.PL
274
275 # lib/lib.pm is not listed here because it has a rule of its own.
276 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
277         pod/pod2usage pod/podchecker pod/podselect \
278         pod/buildtoc
279
280 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
281
282 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
283 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
284 h3 = opcode.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
285 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
286 h5 = utf8.h warnings.h sharedsv.h
287 h = $(h1) $(h2) $(h3) $(h4) $(h5)
288
289 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
290 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
291 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
292 c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c sharedsv.c
293
294 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
295
296 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)
297 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)
298 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) sharedsv$(OBJ_EXT)
299
300 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
301
302 # Once perl has been Configure'd and built ok you build different
303 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
304 #       make clean; make LIBPERL=libperl<type>.a
305 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
306 # See cflags to understand how this works.
307 #
308 # This mechanism is getting clunky and might not even work any more.
309 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
310 #
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="-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 #
646 .PHONY: preplibrary
647 preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm
648         @sh ./makedir lib/auto
649         @echo " AutoSplitting perl library"
650         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
651                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
652         $(MAKE) lib/re.pm
653
654 # Take care to avoid modifying lib/Config.pm without reason
655 # (If trying to create a new port and having problems with the configpm script,
656 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
657 lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm
658         $(LDLIBPTH) ./miniperl configpm configpm.tmp
659         sh mv-if-diff configpm.tmp $@
660
661 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
662         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
663         sh mv-if-diff minimod.tmp $@
664         -touch lib/ExtUtils/Miniperl.pm
665
666 lib/re.pm: ext/re/re.pm
667         cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
668
669 $(plextract):   miniperl$(EXE_EXT) lib/Config.pm
670         @-rm -f $@
671         $(LDLIBPTH) ./miniperl -Ilib $@.PL
672
673 lib/lib.pm:     miniperl$(EXE_EXT) lib/Config.pm
674         @-rm -f $@
675         $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
676
677 extra.pods: miniperl$(EXE_EXT)
678         -@test -f extra.pods && rm -f `cat extra.pods`
679         -@rm -f extra.pods
680         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
681             nx=`echo $$x | sed -e "s/README\.//"`; \
682             cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
683             echo "pod/perl"$$nx".pod" >> extra.pods ; \
684         done
685         -@rm -f pod/perlvms.pod
686         -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
687
688 extras.make: perl$(EXE_EXT)
689         -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
690
691 extras.test: perl$(EXE_EXT)
692         -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
693
694 extras.install: perl$(EXE_EXT)
695         -@test -s extras.lst && $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
696
697 .PHONY: install install-strip install-all install-verbose install-silent \
698         no-install install.perl install.man installman install.html installhtml
699
700 install-strip:
701         $(MAKE) STRIPFLAGS=-s install
702
703 install install-all:
704         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
705
706 install-verbose:
707         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
708
709 install-silent:
710         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
711
712 no-install:
713         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
714
715 install.perl:   all installperl
716         if [ -n "$(COMPILE)" ]; \
717         then \
718                 cd utils; $(MAKE) compile; \
719                 cd ../x2p; $(MAKE) compile; \
720                 cd ../pod; $(MAKE) compile; \
721         else :; \
722         fi
723         $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS)
724         $(MAKE) extras.install
725
726 install.man:    all installman
727         $(LDLIBPTH) ./perl installman $(INSTALLFLAGS)
728
729 # XXX Experimental. Hardwired values, but useful for testing.
730 # Eventually Configure could ask for some of these values.
731 install.html: all installhtml
732         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
733         $(LDLIBPTH) ./perl installhtml                   \
734       --podroot=. --podpath=. --recurse  \
735       --htmldir=$(privlib)/html     \
736       --htmlroot=$(privlib)/html    \
737       --splithead=pod/perlipc     \
738       --splititem=pod/perlfunc    \
739       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
740       --verbose
741
742
743 # I now supply perly.c with the kits, so the following section is
744 # used only if you force byacc to run by saying
745 #       make run_byacc
746 # Since we patch up the byacc output, the perly.fixer script needs
747 # to run with precisely the same version of byacc as I use.  You
748 # normally shouldn't remake perly.[ch].
749
750 .PHONY: check_byacc run_byacc
751
752 check_byacc:
753         @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2'
754
755 run_byacc:      FORCE check_byacc
756         $(BYACC) -d perly.y
757         -chmod 664 perly.c perly.h
758         sh $(shellflags) ./perly.fixer y.tab.c perly.c
759         sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
760             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
761         sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
762         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
763         perl -i perlyline.pl perly.c
764         chmod 664 vms/perly_c.vms vms/perly_h.vms
765         perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
766
767 # We don't want to regenerate perly.c and perly.h, but they might
768 # appear out-of-date after a patch is applied or a new distribution is
769 # made.
770 perly.c: perly.y
771         -@sh -c true
772
773 perly.h: perly.y
774         -@sh -c true
775
776 PERLYVMS = vms/perly_c.vms vms/perly_h.vms
777
778 $(PERLYVMS):    perly.c perly.h vms/vms_yfix.pl
779         perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
780
781 # No compat3.sym here since and including the 5.004_50.
782 # No interp.sym since 5.005_03.
783 SYM  = global.sym globvar.sym perlio.sym pp.sym
784
785 SYMH = perlvars.h intrpvar.h thrdvar.h
786
787 CHMOD_W = chmod +w
788
789 # The following files are generated automatically
790 #       keywords.pl:    keywords.h
791 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
792 # [* embed.pl needs pp.sym generated by opcode.pl! *]
793 #       embed.pl:       proto.h embed.h embedvar.h global.sym
794 #                       perlapi.h perlapi.c pod/perlintern.pod
795 #                       pod/perlapi.pod
796 #       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
797 #                       ext/B/B/Asmdata.pm
798 #       regcomp.pl:     regnodes.h
799 #       warnings.pl:    warnings.h lib/warnings.pm
800 # The correct versions should be already supplied with the perl kit,
801 # in case you don't have perl available.
802 # To force them to be regenerated, type
803 #       make regen_headers
804
805 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
806                 embed.h embedvar.h global.sym \
807                 pod/perlintern.pod pod/perlapi.pod \
808                 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
809                 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
810                 warnings.h lib/warnings.pm
811
812 .PHONY: regen_headers regen_pods regen_all
813
814 regen_headers:  FORCE
815         -$(CHMOD_W) $(AUTOGEN_FILES)
816         -perl keywords.pl
817         -perl opcode.pl
818         -perl embed.pl
819         -perl bytecode.pl
820         -perl regcomp.pl
821         -perl warnings.pl
822         -perl autodoc.pl
823
824 regen_pods:     FORCE
825         -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
826
827 regen_all: $(PERLYVMS) regen_headers regen_pods
828
829 # Extensions:
830 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
831 # automatically get built.  There should ordinarily be no need to change
832 # any of this part of makefile.
833 #
834 # The dummy dependency is a place holder in case $(dynamic_ext) or
835 # $(static_ext) is empty.
836 #
837 # DynaLoader may be needed for extensions that use Makefile.PL.
838
839 $(DYNALOADER):  miniperl$(EXE_EXT) preplibrary FORCE
840         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
841
842 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
843         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
844
845 s_dummy $(static_ext):  miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
846         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
847
848 n_dummy $(nonxs_ext):   miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
849         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
850
851 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
852         realclean _realcleaner clobber _clobber \
853         distclean veryclean _verycleaner
854
855 clean:          _tidy _mopup
856
857 realclean:      _realcleaner _mopup
858         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
859
860 _clobber:
861         -@rm -f Cross/run-* Cross/to-* Cross/from-*
862         rm -f config.sh cppstdin Policy.sh extras.lst
863
864 clobber:        _realcleaner _mopup _clobber
865
866 distclean:      clobber
867
868 # Like distclean but also removes emacs backups and *.orig.
869 veryclean:      _verycleaner _mopup _clobber
870         -@rm -f Obsolete Wanted
871
872 # Do not 'make _mopup' directly.
873 _mopup:
874         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
875         -@test -f extra.pods && rm -f `cat extra.pods`
876         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
877         -rm -f perl.exp ext.libs extra.pods opmini.o
878         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
879         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
880         -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
881         -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
882         -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
883         -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll
884         rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
885
886 # Do not 'make _tidy' directly.
887 _tidy:
888         -cd pod; $(LDLIBPTH) $(MAKE) clean
889         -cd utils; $(LDLIBPTH) $(MAKE) clean
890         -cd x2p; $(LDLIBPTH) $(MAKE) clean
891         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
892         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
893         done
894         rm -f testcompile compilelog
895
896 _cleaner1:
897         -cd os2; rm -f Makefile
898         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
899         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
900         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
901         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
902         $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
903         done
904
905 _cleaner2:
906         rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
907         rm -rf $(addedbyconf)
908         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
909         rm -f $(private)
910         rm -rf lib/auto
911         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
912         rm -f h2ph.man pstruct
913         rm -rf .config
914         rm -f testcompile compilelog
915         -rmdir lib/B lib/Data lib/Digest lib/Encode lib/IO/Socket lib/IO/t lib/IO
916         -rmdir lib/Filter/Util lib/List lib/MIME lib/PerlIO lib/Scalar lib/Sys
917         -rmdir lib/Thread lib/XS
918
919 _realcleaner:
920         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
921         @$(LDLIBPTH) $(MAKE) _cleaner2
922
923 _verycleaner:
924         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
925         @$(LDLIBPTH) $(MAKE) _cleaner2
926         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
927
928 # The following lint has practically everything turned on.  Unfortunately,
929 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
930 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
931 # for that spot.
932
933 .PHONY: lint
934 lint: $(c)
935         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
936
937 # Need to unset during recursion to go out of loop.
938 # The README below ensures that the dependency list is never empty and
939 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
940
941 MAKEDEPEND = Makefile makedepend
942
943 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
944         $(MAKE) depend MAKEDEPEND=
945
946 config.h: config_h.SH config.sh
947         $(SHELL) config_h.SH
948
949 # When done, touch perlmain.c so that it doesn't get remade each time.
950 .PHONY: depend
951 depend: makedepend
952         sh ./makedepend MAKE=$(MAKE)
953         - test -s perlmain.c && touch perlmain.c
954         cd x2p; $(MAKE) depend
955
956 # Cannot postpone this until $firstmakefile is ready ;-)
957 makedepend: makedepend.SH config.sh
958         sh ./makedepend.SH
959
960 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
961         test_tty test-tty _test_tty test_notty test-notty _test_notty \
962         utest ucheck test.utf8 check.utf8 \
963         test.third check.third utest.third ucheck.third test_notty.third \
964         test.deparse test_notty.deparse \
965         minitest coretest
966
967 # Cannot delegate rebuilding of t/perl to make
968 # to allow interlaced test and minitest
969
970 TESTFILE=TEST
971
972 _test_prep:
973         cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
974
975 # Architecture-neutral stuff:
976
977 test_prep_pre: preplibrary utilities $(nonxs_ext)
978
979 test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
980         PERL=./perl $(MAKE) _test_prep
981
982 _test_tty:
983         cd t && $(LDLIBPTH) $(PERL_DEBUG) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
984
985 _test_notty:
986         cd t && $(LDLIBPTH) $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(PERL) $(TESTFILE) $(TEST_ARGS)
987
988 # The second branch is for testing without a tty or controlling terminal,
989 # see t/op/stat.t
990 _test:
991         if (true </dev/tty) >/dev/null 2>&1; then \
992           $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty   ; \
993         else \
994           $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
995         fi
996         @echo "Ran tests" > t/rantests
997
998 test check: test_prep
999         PERL=./perl $(MAKE) _test
1000
1001 test_tty: test_prep
1002         PERL=./perl $(MAKE) _test_tty
1003
1004 test_notty: test_prep
1005         PERL=./perl $(MAKE) _test_notty
1006
1007 utest ucheck test.utf8 check.utf8: test_prep
1008         PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1009
1010 coretest: test_prep
1011         PERL=./perl TEST_ARGS=-core $(MAKE) _test
1012
1013 test-prep:      test_prep
1014
1015 test-tty:       test_tty
1016
1017 test-notty:     test_notty
1018
1019 # Targets for Third Degree testing.
1020
1021 test_prep.third: test_prep perl.third perl.third$(EXE_EXT)
1022         PERL=./perl.third $(MAKE) _test_prep
1023
1024 test.third check.third: test_prep.third perl.third
1025         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1026
1027 utest.third ucheck.third: test_prep.third perl.third
1028         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1029
1030 test_notty.third: test_prep.third perl.third
1031         PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1032
1033 # Targets for Deparse testing.
1034
1035 test.deparse:   test_prep
1036         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1037
1038 test_notty.deparse:     test_prep
1039         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1040
1041 # Can't depend on lib/Config.pm because that might be where miniperl
1042 # is crashing.
1043 minitest: miniperl$(EXE_EXT) lib/re.pm
1044         @echo "You may see some irrelevant test failures if you have been unable"
1045         @echo "to build lib/Config.pm."
1046         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1047                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t </dev/tty
1048
1049 # Test via harness
1050
1051 test_harness: test_prep
1052         PERL=./perl $(MAKE) TESTFILE=harness _test
1053
1054 # Handy way to run perlbug -ok without having to install and run the
1055 # installed perlbug. We don't re-run the tests here - we trust the user.
1056 # Please *don't* use this unless all tests pass.
1057 # If you want to report test failures, use "make nok" instead.
1058
1059 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1060
1061 ok:     utilities
1062         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1063
1064 okfile: utilities
1065         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1066
1067 oknack: utilities
1068         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1069
1070 okfilenack:     utilities
1071         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1072
1073 nok:    utilities
1074         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1075
1076 nokfile:        utilities
1077         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1078
1079 noknack:        utilities
1080         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1081
1082 nokfilenack:    utilities
1083         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1084
1085 .PHONY: clist hlist shlist pllist
1086
1087 clist:  $(c)
1088         echo $(c) | tr ' ' $(TRNL) >.clist
1089
1090 hlist:  $(h)
1091         echo $(h) | tr ' ' $(TRNL) >.hlist
1092
1093 shlist: $(sh)
1094         echo $(sh) | tr ' ' $(TRNL) >.shlist
1095
1096 pllist: $(pl)
1097         echo $(pl) | tr ' ' $(TRNL) >.pllist
1098
1099 Makefile: Makefile.SH ./config.sh
1100         $(SHELL) Makefile.SH
1101
1102 .PHONY: distcheck
1103 distcheck: FORCE
1104         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1105
1106 .PHONY: elc
1107 elc:    emacs/cperl-mode.elc
1108
1109 emacs/cperl-mode.elc: emacs/cperl-mode.el
1110         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1111
1112 .PHONY: etags ctags tags
1113
1114 etags:  TAGS
1115
1116 TAGS: emacs/cperl-mode.elc
1117         sh emacs/ptags
1118
1119 ctags:  tags
1120
1121 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1122 # This may also fail if . is in the head of the path, since perl will
1123 # require -Ilib
1124 tags:   TAGS
1125         perl emacs/e2ctags.pl TAGS > tags
1126
1127 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1128 # If this runs make out of memory, delete /usr/include lines.
1129 !NO!SUBS!
1130
1131 $eunicefix Makefile
1132 case `pwd` in
1133 *SH)
1134     $rm -f ../Makefile
1135     $ln Makefile ../Makefile
1136     ;;
1137 esac
1138 $rm -f $firstmakefile
1139
1140 # Now do any special processing required before building.
1141
1142 case "$ebcdic" in
1143 $define)
1144     xxx=''
1145     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
1146 case "$osname" in
1147 os390|posix-bc)
1148     rm -f y.tab.c y.tab.h
1149     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
1150     yacc -d perly.y >/dev/null 2>&1
1151     if cmp -s y.tab.c perly.c; then
1152         rm -f y.tab.c
1153     else
1154         echo "perly.y -> perly.c" >&2
1155         mv -f y.tab.c perly.c
1156         chmod u+w perly.c
1157         sed -e '/^#include "perl\.h"/a\
1158 \
1159 #define yydebug    PL_yydebug\
1160 #define yynerrs    PL_yynerrs\
1161 #define yyerrflag  PL_yyerrflag\
1162 #define yychar     PL_yychar\
1163 #define yyval      PL_yyval\
1164 #define yylval     PL_yylval'                           \
1165             -e '/YYSTYPE *yyval;/D'                     \
1166             -e '/YYSTYPE *yylval;/D'                    \
1167             -e '/int  yychar,/,/yynerrs;/D'             \
1168             -e 's/int yydebug = 0;/yydebug = 0;/'       \
1169             -e 's/[^_]realloc(/PerlMem_realloc(/g'      \
1170             -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1171             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1172         xxx="$xxx perly.c"
1173     fi
1174     if cmp -s y.tab.h perly.h; then
1175         rm -f y.tab.h
1176     else
1177         echo "perly.y -> perly.h" >&2
1178         mv -f y.tab.h perly.h
1179         xxx="$xxx perly.h"
1180     fi
1181     if cd x2p
1182     then
1183         rm -f y.tab.c y.tab.h
1184         case "$osname" in
1185         posix-bc)
1186            # we are using two different yaccs in BS2000 Posix!
1187            byacc a2p.y >/dev/null 2>&1
1188            ;;
1189         *) # e.g. os390
1190            yacc  a2p.y >/dev/null 2>&1
1191            ;;
1192         esac
1193         if cmp -s y.tab.c a2p.c
1194         then
1195             rm -f y.tab.c
1196         else
1197             echo "a2p.y -> a2p.c" >&2
1198             mv -f y.tab.c a2p.c
1199             chmod u+w a2p.c
1200             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1201                 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1202                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1203             xxx="$xxx a2p.c"
1204         fi
1205         # In case somebody yacc -d:ed the a2p.y.
1206         if test -f y.tab.h
1207         then
1208             if cmp -s y.tab.h a2p.h
1209             then
1210                 rm -f y.tab.h
1211             else
1212                 echo "a2p.h -> a2p.h" >&2
1213                 mv -f y.tab.h a2p.h
1214                 xxx="$xxx a2p.h"
1215             fi
1216         fi
1217         cd ..
1218     fi
1219     ;;
1220 vmesa)
1221     # Do nothing in VM/ESA.
1222     ;;
1223 *)
1224     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1225     ;;
1226 esac
1227     case "$xxx" in
1228     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1229     esac
1230     ;;
1231 esac
1232