This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
4b3acfb968f4c531522bec9567f0e152c6831cd3
[perl5.git] / Makefile.SH
1 #!/bin/sh
2
3 # quote() - Creates a shell literal
4 # Usage:  echo "...` quote "..." `..."
5 quote() {
6         case "$1" in
7         '') echo "''" ;;
8         *)  echo "$1" | sed 's/\([^a-zA-Z0-9.:_/-]\)/\\\1/g' ;;
9         esac
10 }
11
12 case $PERL_CONFIG_SH in
13 '')
14         if test -f config.sh
15                 then TOP=.
16         else
17                 echo "Can't find config.sh."; exit 1
18         fi
19         . $TOP/config.sh
20         ;;
21 esac
22
23 Makefile=Makefile
24
25 : This forces SH files to create target in same directory as SH file.
26 : This is so that make depend always knows where to find SH derivatives.
27 case "$0" in
28 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
29 esac
30
31 pwd="`pwd`"
32 linklibperl='$(LIBPERL)'
33 linklibperl_nonshr=''
34 shrpldflags='$(LDDLFLAGS)'
35 ldlibpth=''
36 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
37 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
38 case "$useshrplib" in
39 true)
40         # Prefix all runs of 'miniperl' and 'perl' with
41         # $ldlibpth so that ./perl finds *this* shared libperl.
42         case "$LD_LIBRARY_PATH" in
43         '')  ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;;
44         *)   ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;;
45         esac
46
47         pldlflags="$cccdlflags"
48         static_ldflags=''
49         case "${osname}${osvers}" in
50         next4*)
51                 ld=libtool
52                 lddlflags="-dynamic -undefined warning -framework System \
53                 -compatibility_version 1 -current_version $patchlevel \
54                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
55                 ;;
56         darwin*)
57                 shrpldflags="${ldflags} -dynamiclib \
58                             -compatibility_version \
59                                 ${api_revision}.${api_version}.${api_subversion} \
60                              -current_version \
61                                 ${revision}.${patchlevel}.${subversion} \
62                              -install_name \$(shrpdir)/\$@"
63                 ;;
64         cygwin*)
65                 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
66                 linklibperl="-L. -lperl"
67                 ;;
68         sunos*)
69                 linklibperl="-lperl"
70                 ;;
71         netbsd*|freebsd[234]*|openbsd*|dragonfly*|bitrig*)
72                 linklibperl="-L. -lperl"
73                 ;;
74         interix*)
75                 linklibperl="-L. -lperl"
76                 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
77                 ;;
78         aix*)
79                 case "$cc" in
80                 gcc*)
81                         shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
82                         case "$osvers" in
83                         3*)     shrpldflags="$shrpldflags -e _nostart"
84                                 ;;
85                         *)      shrpldflags="$shrpldflags -Wl,-bnoentry"
86                                 ;;
87                         esac
88                         shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
89                         linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
90                         linklibperl_nonshr='-lperl_nonshr'
91                         ;;
92                 *)
93                         shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
94                         case "$osvers" in
95                         3*)     shrpldflags="$shrpldflags -e _nostart"
96                                 ;;
97                         *)      shrpldflags="$shrpldflags -b noentry"
98                                 ;;
99                         esac
100                         shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
101                         linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
102                         linklibperl_nonshr='-lperl_nonshr'
103                         ;;
104                 esac
105                 ;;
106         hpux*)
107                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
108                 ;;
109         os390*)
110             shrpldflags='-W l,XPLINK,dll'
111             linklibperl='libperl.x'
112             DPERL_EXTERNAL_GLOB=''
113             ;;
114         esac
115         case "$ldlibpthname" in
116         '') ;;
117         *)
118             case "$osname" in
119             os2)
120                 ldlibpth=''
121                 ;;
122             *)
123                 eval "ldlibpthval=\"\$$ldlibpthname\""
124
125                 case "$ldlibpthval" in
126                 '')  ldlibpth="$ldlibpthname=` quote "$pwd" `" ;;
127                 *)   ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;;
128                 esac
129
130                 ;;
131             esac
132
133             ;;
134         esac
135
136         case "$osname" in
137         linux)
138             # If there is a pre-existing $libperl from a previous
139             # installation, Linux needs to use LD_PRELOAD to
140             # override the LD_LIBRARY_PATH setting.  See the
141             # INSTALL file, under "Building a shared perl library".
142             # If there is no pre-existing $libperl, we don't need
143             # to do anything further.
144             if test -f $archlib/CORE/$libperl; then
145                 rm -f preload
146                 cat <<'EOT' > preload
147 #! /bin/sh
148 lib=$1
149 shift
150 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
151 exec "$@"
152 EOT
153                 chmod 755 preload
154                 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
155             fi
156             ;;
157         os390)  test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
158                 ;;
159         esac
160
161         ;;
162
163 *)      pldlflags=''
164         static_ldflags='CCCDLFLAGS='
165         ;;
166 esac
167
168 : is Cwd static or dynamic
169 static_cwd='define'
170 list_util_dep='$(PERL_EXE)'
171 for f in $dynamic_ext; do
172    case $f in
173        Cwd) static_cwd='undef' ;;
174        List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext
175    esac
176 done
177
178 : Prepare dependency lists for Makefile.
179 dynamic_list=' '
180 dynamic_ext_re="lib/auto/re/re.$dlext"
181 extra_dep='
182 ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
183 '
184 for f in $dynamic_ext; do
185     : the dependency named here will never exist
186       base=`echo "$f" | sed 's/.*\///'`
187     this_target="lib/auto/$f/$base.$dlext"  
188     dynamic_list="$dynamic_list $this_target"
189
190     : Parallel makes reveal that we have some interdependencies
191     case $f in
192         Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
193 $this_target: $list_util_dep" ;;
194         Unicode/Normalize) extra_dep="$extra_dep
195 $this_target: uni.data" ;;
196     esac
197 done
198
199 static_list=' '
200 for f in $static_ext; do
201         base=`echo "$f" | sed 's/.*\///'`
202         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
203     : Parallel makes reveal that we have some interdependencies
204     this_target="lib/auto/$f/$base\$(LIB_EXT)"
205     case $f in
206         Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
207 $this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
208         Unicode/Normalize) extra_dep="$extra_dep
209 $this_target: uni.data" ;;
210     esac
211 done
212
213 nonxs_list=' '
214 for f in $nonxs_ext; do
215     p=`echo "$f" | tr / -`
216     for d in ext dist cpan; do
217         if test -d $d/$p; then
218             nonxs_list="$nonxs_list $d/$p/pm_to_blib"
219         fi
220     done
221 done
222
223 dtrace_h=''
224 dtrace_o=''
225 minidtrace_o=''
226 case "$usedtrace" in
227 define|true)
228         dtrace_h='perldtrace.h' 
229         $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
230                 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)' \
231                 && minidtrace_o='miniperldtrace$(OBJ_EXT)'
232         ;;
233 esac
234
235 echo "Extracting $Makefile (with variable substitutions)"
236 $spitshell >$Makefile <<!GROK!THIS!
237 # $Makefile
238 # This file is derived from Makefile.SH.  Any changes made here will
239 # be lost the next time you run Configure.
240 #  Makefile is used to generate $firstmakefile.  The only difference
241 #  is that $firstmakefile has the dependencies filled in at the end.
242
243 CC = $cc
244 LD = $ld
245
246 LDFLAGS = $ldflags
247 CLDFLAGS = $ldflags
248
249 mallocsrc = $mallocsrc
250 mallocobj = $mallocobj
251 LNS = $lns
252 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
253 CPS = $cp
254 RMS = rm -f
255 ranlib = $ranlib
256
257 # The following are mentioned only to make metaconfig include the
258 # appropriate questions in Configure.  If you want to change these,
259 # edit config.sh instead, or specify --man1dir=/wherever on
260 # installman commandline.
261 bin = $installbin
262 scriptdir = $scriptdir
263 shrpdir = $archlibexp/CORE
264 privlib = $installprivlib
265 man1dir = $man1dir
266 man1ext = $man1ext
267 man3dir = $man3dir
268 man3ext = $man3ext
269
270 # The following are used to build and install shared libraries for
271 # dynamic loading.
272 LDDLFLAGS = $lddlflags
273 SHRPLDFLAGS = $shrpldflags
274 CCDLFLAGS = $ccdlflags
275 DLSUFFIX = .$dlext
276 PLDLFLAGS = $pldlflags
277 LIBPERL = $libperl
278 LLIBPERL= $linklibperl
279 LLIBPERL_NONSHR= $linklibperl_nonshr
280 SHRPENV = $shrpenv
281
282 # Static targets are ordinarily built without CCCDLFLAGS.  However,
283 # if building a shared libperl.so that might later be linked into
284 # another application, then it might be appropriate to also build static
285 # extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
286 # for GNU cc).
287 STATIC_LDFLAGS = $static_ldflags
288
289 # The following is used to include the current directory in
290 # the dynamic loader path you are building a shared libperl.
291 LDLIBPTH = $ldlibpth
292
293 # Sometimes running an executable is an adventure.
294 RUN = 
295
296 # When cross-compiling we want to use a (mini)perl built for the host, not the target
297 HOST_PERL = $hostperl
298 HOST_GENERATE = $hostgenerate
299 SYSTEM_PERL = $perl
300
301 # These variables may need to be manually set for non-Unix systems.
302 AR = $full_ar
303 HOST_EXE_EXT = $_exe
304 EXE_EXT = $_exe
305 LIB_EXT = $_a
306 OBJ_EXT = $_o
307 PATH_SEP = $p_
308
309 # Macros to invoke a copy of miniperl during the build.  Targets which
310 # are built using these macros should depend on \$(MINIPERL_EXE)
311 MINIPERL_EXE = miniperl\$(EXE_EXT)
312 MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
313
314 # Macros to invoke sort the MANIFEST during build
315 MANIFEST_SRT = MANIFEST.srt
316
317 !GROK!THIS!
318
319 case "$usecrosscompile$perl" in
320 define?*)
321         $spitshell >>$Makefile <<!GROK!THIS!
322 # Macros to invoke a copy of our fully operational perl during the build.
323 PERL_EXE = perl\$(EXE_EXT)
324 RUN_PERL = \$(LDLIBPTH) \$(RUN) $perl\$(EXE_EXT)
325 !GROK!THIS!
326         ;;
327 *)
328         $spitshell >>$Makefile <<!GROK!THIS!
329 # Macros to invoke a copy of our fully operational perl during the build.
330 PERL_EXE = perl\$(EXE_EXT)
331 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib
332 !GROK!THIS!
333         ;;
334 esac
335
336 $spitshell >>$Makefile <<!GROK!THIS!
337 # Macros to run our tests
338 RUN_TESTS = \$(LDLIBPTH) ./runtests
339
340 dynamic_ext = $dynamic_list
341 dynamic_ext_re = $dynamic_ext_re
342 static_ext = $static_list
343 nonxs_ext = $nonxs_list
344 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
345 DYNALOADER = DynaLoader\$(OBJ_EXT)
346
347 libs = $perllibs $cryptlib
348
349 public = \$(PERL_EXE) utilities
350
351 shellflags = $shellflags
352
353 # This is set to  MAKE=$make if your $make command doesn't
354 # do it for you.
355 $make_set_make
356
357 # Mention $gmake here so it gets probed for by Configure.
358
359 !GROK!THIS!
360
361 case "${osname}" in
362 linux*|darwin)
363 $spitshell >>$Makefile <<!GROK!THIS!
364 # If you're going to use valgrind and it can't be invoked as plain valgrind
365 # then you'll need to change this, or override it on the make command line.
366 VALGRIND ?= valgrind
367 VG_TEST  ?= ./perl -e 1 2>/dev/null
368
369 !GROK!THIS!
370         ;;
371 esac
372
373 $spitshell >>$Makefile <<!GROK!THIS!
374 DTRACE = $dtrace
375 DTRACE_H = $dtrace_h
376 DTRACE_O = $dtrace_o
377 MINIDTRACE_O = $minidtrace_o
378
379 FIRSTMAKEFILE = $firstmakefile
380
381 # Any special object files needed by this architecture, e.g. os2/os2.obj
382 ARCHOBJS = $archobjs
383
384 .SUFFIXES: .c \$(OBJ_EXT) .i .s
385
386 # grrr
387 SHELL = $sh
388
389 # how to tr(anslate) newlines
390 TRNL = '$trnl'
391
392 OPTIMIZE = $optimize
393
394 EXTRAS = $extras
395
396 INSTALLPREFIXEXP = $prefix
397
398 !GROK!THIS!
399 # not used by Makefile but by installperl;
400 # mentioned here so that metaconfig picks these up
401 # $installusrbinperl
402 # $versiononly
403
404 case "${osname}:${osvers}" in
405 darwin:*)
406 $spitshell >>$Makefile <<EOF
407
408 # Your locales are broken (osname $osname, osvers $osvers)
409 # and to avoid the numerous
410 # perl: warning: Setting locale failed.
411 # warnings during the build process we reset the locale variables.
412
413 LC_ALL=C
414 LANG=C
415 LANGUAGE=C
416 EOF
417         ;;
418 esac
419
420 ## In the following dollars and backticks do not need the extra backslash.
421 $spitshell >>$Makefile <<'!NO!SUBS!'
422
423 CCCMD    = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
424
425 CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
426
427 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
428 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
429
430 CONFIGPOD = lib/Config.pod
431
432 CONFIGH = config.h
433 !NO!SUBS!
434
435 SH_to_target() {
436     echo $@ | sed -e s/\\\.SH//g -e s/_/./g
437 }
438
439 SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH'
440 shextract=`SH_to_target $SH`
441
442 ## In the following dollars and backticks do not need the extra backslash.
443 $spitshell >>$Makefile <<!GROK!THIS!
444
445 private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
446
447 # Files to be built with variable substitution before miniperl
448 # is available.
449 sh = $SH
450
451 shextract = $shextract
452 !GROK!THIS!
453
454 ## In the following dollars and backticks do not need the extra backslash.
455 $spitshell >>$Makefile <<'!NO!SUBS!'
456
457 addedbyconf = UU $(shextract) pstruct
458
459 # Unicode data files generated by mktables
460 unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
461         lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
462         lib/unicore/UCD.pl lib/unicore/Name.pm \
463         lib/unicore/Heavy.pl lib/unicore/mktables.lst
464
465 # Directories of Unicode data files generated by mktables
466 unidatadirs = lib/unicore/To lib/unicore/lib
467
468 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
469 h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
470 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
471 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
472 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
473 h6 = charclass_invlists.h
474 h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
475
476 c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro_core.c perl.c
477 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
478 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
479 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c dquote.c time64.c
480 c5 = $(mallocsrc)
481
482 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
483
484 obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
485 obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT)
486 obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) mro_core$(OBJ_EXT) keywords$(OBJ_EXT)
487 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)
488 obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) mathoms$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT) caretx$(OBJ_EXT) dquote$(OBJ_EXT) time64$(OBJ_EXT)
489
490 minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
491 mini_obj = $(minindt_obj) $(MINIDTRACE_O)
492 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
493 obj = $(ndt_obj) $(DTRACE_O)
494
495 perltoc_pod_prereqs = extra.pods pod/perl5233delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
496 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
497 generated_headers = uudmap.h bitcount.h mg_data.h
498
499 lintflags = \
500     -b \
501     -n \
502     -p \
503     -Ncheck=%all \
504     -Nlevel=4 \
505     -errchk=parentheses \
506     -errhdr=%all \
507     -errfmt=src \
508     -errtags \
509     -erroff=E_ASSIGN_NARROW_CONV \
510     -erroff=E_BAD_PTR_CAST \
511     -erroff=E_BAD_PTR_CAST_ALIGN \
512     -erroff=E_BAD_PTR_INT_COMBINATION \
513     -erroff=E_BAD_SIGN_EXTEND \
514     -erroff=E_BLOCK_DECL_UNUSED \
515     -erroff=E_CASE_FALLTHRU \
516     -erroff=E_CONST_EXPR \
517     -erroff=E_CONSTANT_CONDITION \
518     -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
519     -erroff=E_EQUALITY_NOT_ASSIGNMENT \
520     -erroff=E_EXPR_NULL_EFFECT \
521     -erroff=E_FALSE_LOGICAL_EXPR \
522     -erroff=E_INCL_NUSD \
523     -erroff=E_LOOP_EMPTY \
524     -erroff=E_MAIN_PARAM \
525     -erroff=E_POINTER_TO_OBJECT \
526     -erroff=E_PTRDIFF_OVERFLOW \
527     -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
528     -erroff=E_STATIC_UNUSED \
529     -erroff=E_TRUE_LOGICAL_EXPR
530
531 splintflags = \
532     -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
533     -D__builtin_va_list=va_list \
534     -Dsigjmp_buf=jmp_buf \
535     -warnposix \
536     \
537     +boolint \
538     +charintliteral \
539     -fixedformalarray \
540     -mustfreefresh \
541     -nestedextern \
542     -predboolint \
543     -predboolothers \
544     -preproc \
545     -boolops \
546     -shadow \
547     -nullstate \
548     +longintegral \
549     +matchanyintegral \
550     -type \
551     \
552     +line-len 999 \
553     +weak
554
555 splintfiles = $(c1)
556
557 .c$(OBJ_EXT): 
558         @echo `$(CCCMD)` $(PLDLFLAGS) $*.c
559         @`$(CCCMD)` $(PLDLFLAGS) $*.c
560
561 .c.i:   perl.h config.h
562         @echo `$(CCCMDSRC)` -E $*.c \> $*.i
563         @`$(CCCMDSRC)` -E $*.c > $*.i
564
565 .c.s:   perl.h config.h
566         @echo `$(CCCMDSRC)` -S $*.c
567         @`$(CCCMDSRC)` -S $*.c
568
569 all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make $(MANIFEST_SRT)
570         @echo " ";
571         @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
572
573 $(MANIFEST_SRT):        MANIFEST $(PERL_EXE)
574         @$(RUN_PERL) Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
575             $(RUN_PERL) Porting/manisort -q -o MANIFEST; sh -c true)
576         @touch $(MANIFEST_SRT)
577
578 .PHONY: all utilities
579
580 # Both git_version.h and lib/Config_git.pl are built
581 # by make_patchnum.pl.
582 git_version.h: lib/Config_git.pl
583
584 lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
585         $(MINIPERL) make_patchnum.pl
586
587 # make sure that we recompile perl.c if the git version changes
588 perl$(OBJ_EXT): git_version.h
589
590 !NO!SUBS!
591
592 # Making utilities requires Cwd.  If we have dynamic
593 # loading, we only need miniperl and Cwd.$dlext.  If we have static
594 # loading, we need to build perl first.
595 case "$usedl$static_cwd" in
596 defineundef)
597     util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
598     ;;
599 definedefine)
600     util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
601     ;;
602 *)  util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
603     ;;
604 esac
605
606 $spitshell >>$Makefile <<!GROK!THIS!
607 utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
608         \$(MINIPERL) -Ilib utils/Makefile.PL
609
610 utilities:      utils/Makefile $util_deps
611         @echo " "; echo "       Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
612
613 !GROK!THIS!
614
615 $spitshell >>$Makefile <<'!NO!SUBS!'
616
617 # This is now done by installman only if you actually want the man pages.
618 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
619
620 # Phony target to force checking subdirectories.
621 # Apparently some makes require an action for the FORCE target.
622 .PHONY: FORCE
623 FORCE:
624         @sh -c true
625 !NO!SUBS!
626
627 for file in op perl; do
628     if $issymlink $file.c; then
629         $spitshell >>$Makefile <<!GROK!THIS!
630
631 # We do a copy of the $file.c instead of a symlink because gcc gets huffy
632 # if we have a symlink forest to another disk (it complains about too many
633 # levels of symbolic links, even if we have only two)
634
635 ${file}mini.c: $file.c
636         \$(RMS) ${file}mini.c
637         \$(CPS) ${file}.c ${file}mini.c
638 !GROK!THIS!
639     else
640         $spitshell >>$Makefile <<!GROK!THIS!
641
642 ${file}mini.c: $file.c
643         \$(RMS) ${file}mini.c
644         \$(LNS) ${file}.c ${file}mini.c
645 !GROK!THIS!
646     fi
647
648     $spitshell >>$Makefile <<!GROK!THIS!
649
650 ${file}mini\$(OBJ_EXT): ${file}mini.c
651         echo @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
652         @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
653 !GROK!THIS!
654 done
655
656 $spitshell >>$Makefile <<'!NO!SUBS!'
657
658 globals$(OBJ_EXT): $(generated_headers)
659
660 uudmap.h mg_data.h: bitcount.h
661
662 generate_uudmap$(OBJ_EXT): mg_raw.h
663
664 !NO!SUBS!
665
666 # If hostgerenate isn't defined, then we have to build
667 # generate_uudmap and run it. This can potentially mean running
668 # it on the target system if we're cross-compiling.
669 # If it is defined, then we just run it locally.
670 case "$hostgenerate" in
671 ''|'undef')
672 $spitshell >>$Makefile <<!GROK!THIS!
673 bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
674         $run ./generate_uudmap\$(HOST_EXE_EXT) \$(generated_headers)
675         -@for f in \$(generated_headers); do \\
676             $from \$\$f; \\
677         done
678
679 !GROK!THIS!
680
681 $spitshell >>$Makefile <<'!NO!SUBS!'
682 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
683         $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
684
685 !NO!SUBS!
686 ;;
687 *)
688 $spitshell >>$Makefile <<'!NO!SUBS!'
689 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
690         ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
691
692 generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
693         -@rm generate_uudmap$(HOST_EXE_EXT)
694         $(LNS) $(HOST_GENERATE) generate_uudmap$(HOST_EXE_EXT)
695
696 !NO!SUBS!
697 ;;
698 esac
699
700
701 $spitshell >>$Makefile <<'!NO!SUBS!'
702 perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
703         $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
704
705 # The file ext.libs is a list of libraries that must be linked in
706 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
707 # static extension Makefile's add to it.
708 ext.libs: $(static_ext)
709         -@test -f ext.libs || touch ext.libs
710
711 !NO!SUBS!
712
713 # How to build libperl.  This is still rather convoluted.
714 # Load up custom Makefile.SH fragment for shared loading and executables:
715 case "$osname" in
716 *)
717         Makefile_s="$osname/Makefile.SHs"
718         ;;
719 esac
720
721 case "$osname" in
722 aix)
723         $spitshell >>$Makefile <<!GROK!THIS!
724 LIBS                    = $perllibs
725 # In AIX we need to change this for building Perl itself from
726 # its earlier definition (which is for building external
727 # extensions *after* Perl has been built and installed)
728 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
729
730 !GROK!THIS!
731         case "$useshrplib" in
732         define|true|[yY]*)
733                 $spitshell >>$Makefile <<'!NO!SUBS!'
734
735 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
736 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
737
738 $(LIBPERL_NONSHR): $(obj)
739         $(RMS) $(LIBPERL_NONSHR)
740         $(AR) rcu $(LIBPERL_NONSHR) $(obj)
741
742 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)  perlmini$(OBJ_EXT)
743         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
744             opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
745
746 MINIPERLEXP             = $(MINIPERL_NONSHR)
747
748 LIBPERLEXPORT           = perl.exp
749
750 !NO!SUBS!
751                 
752                 ;;
753         *)      
754                 $spitshell >>$Makefile <<'!NO!SUBS!'
755 MINIPERLEXP             = $(MINIPERL_EXE)
756
757 PERLEXPORT              = perl.exp
758
759 !NO!SUBS!
760         ;;
761         esac
762         $spitshell >>$Makefile <<'!NO!SUBS!'
763 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
764         ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
765
766 !NO!SUBS!
767         ;;
768 os2)
769         $spitshell >>$Makefile <<'!NO!SUBS!'
770 MINIPERLEXP             = miniperl
771
772 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
773         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
774
775 !NO!SUBS!
776         ;;
777 cygwin)
778         $spitshell >>$Makefile <<'!NO!SUBS!'
779 cygwin.c: cygwin/cygwin.c
780         $(LNS) cygwin/cygwin.c
781
782 LIBPERL_NONSHR          = libperl$(LIB_EXT)
783
784 $(LIBPERL_NONSHR): $(obj)
785         $(RMS) $(LIBPERL_NONSHR)
786         $(AR) rcu $(LIBPERL_NONSHR) $(obj)
787
788 !NO!SUBS!
789         ;;
790 esac
791
792 if test -s $Makefile_s ; then
793         . $Makefile_s
794         $spitshell >>$Makefile <<!GROK!THIS!
795
796 Makefile: $Makefile_s
797 !GROK!THIS!
798 else
799         case "$dtrace_h" in
800         ?*)
801                 $spitshell >>$Makefile <<'!NO!SUBS!'
802 # dtrace dicards const qualifiers from arguments, put them back
803 $(DTRACE_H): perldtrace.d
804         $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
805         sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
806         $(RMS) $(DTRACE_H).in
807
808 mydtrace.h: $(DTRACE_H)
809
810 !NO!SUBS!
811                 ;;
812         esac
813         case "$dtrace_o" in
814         ?*)
815                 $spitshell >>$Makefile <<'!NO!SUBS!'
816 $(DTRACE_O): perldtrace.d $(ndt_obj)
817         $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
818
819 $(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
820         $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
821
822 !NO!SUBS!
823                 ;;
824     esac
825         $spitshell >>$Makefile <<'!NO!SUBS!'
826 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
827 !NO!SUBS!
828         case "$useshrplib" in
829         true)
830                 $spitshell >>$Makefile <<'!NO!SUBS!'
831         rm -f $@
832         $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
833 !NO!SUBS!
834                 case "$osname" in
835                 aix)
836                         $spitshell >>$Makefile <<'!NO!SUBS!'
837         rm -f libperl$(OBJ_EXT)
838         mv $@ libperl$(OBJ_EXT)
839         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
840 !NO!SUBS!
841                         ;;
842                 esac
843                 ;;
844         *)
845                 $spitshell >>$Makefile <<'!NO!SUBS!'
846         rm -f $(LIBPERL)
847         $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
848         @$(ranlib) $(LIBPERL)
849 !NO!SUBS!
850                 ;;
851         esac
852         $spitshell >>$Makefile <<'!NO!SUBS!'
853
854 # How to build executables.
855
856 # The $& notation tells Sequent machines that it can do a parallel make,
857 # and is harmless otherwise.
858 # The miniperl -w -MExporter line is a basic cheap test to catch errors
859 # before make goes on to run preplibrary and then MakeMaker on extensions.
860 # This is very handy because later errors are often caused by miniperl
861 # build problems but that's not obvious to the novice.
862 # The Module used here must not depend on Config or any extensions.
863
864 # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
865 # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
866 # miniperl to exist first permits us to
867 # a) have one rule generate both miniperl and lib/buildcustomize.pl
868 #    (so that lib/buildcustomize.pl is always available. This simplifies things)
869 # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
870
871 $(MINIPERL_EXE): lib/buildcustomize.pl
872
873 !NO!SUBS!
874
875         case "${osname}${osvers}" in
876         aix*)
877                 $spitshell >>$Makefile <<'!NO!SUBS!'
878 lib/buildcustomize.pl: $& $(mini_obj)
879         $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
880         $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
881         $(MINIPERL) -f write_buildcustomize.pl
882 !NO!SUBS!
883                 ;;
884         next4*)
885                 $spitshell >>$Makefile <<'!NO!SUBS!'
886 lib/buildcustomize.pl: $& $(mini_obj) write    ldcustomize.pl
887         $(CC) -o $(MINIPERL_EXE) $(mini_obj    libs)
888         $(LDLIBPTH) ./miniperl$(HOST    _EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
889         $(MINIPERL) -f write_buildcustomize.pl    
890 !NO!SUBS!
891                 ;;
892         darwin*)
893                 case "$osvers" in
894                 [1-6].*) ;;
895                 *) case "$ldflags" in
896                     *"-flat_namespace"*) ;;
897                     *) # to allow opmini.o to override stuff in libperl.dylib
898                 $spitshell >>$Makefile <<!NO!SUBS!
899 NAMESPACEFLAGS = -force_flat_namespace
900 !NO!SUBS!
901                        ;;
902                     esac
903                     ;;
904                 esac
905                 $spitshell >>$Makefile <<'!NO!SUBS!'
906 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
907         -@rm -f miniperl.xok
908         $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
909             $(mini_obj) $(libs)
910         $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
911         $(MINIPERL) -f write_buildcustomize.pl
912 !NO!SUBS!
913                 ;;
914         *)
915                 if test "X$hostperl" != X; then
916                         $spitshell >>$Makefile <<!GROK!THIS!
917 lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl
918         -@rm -f miniperl.xok
919         -@rm \$(MINIPERL_EXE)
920         \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
921         \$(LDLIBPTH) ./miniperl\$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
922         \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
923 !GROK!THIS!
924                 else
925                         $spitshell >>$Makefile <<'!NO!SUBS!'
926 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
927         -@rm -f miniperl.xok
928         $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
929             $(mini_obj) $(libs)
930         $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl.  Please run make minitest; exit 1'
931         $(MINIPERL) -f write_buildcustomize.pl
932 !NO!SUBS!
933                 fi
934                 ;;
935         esac
936
937         $spitshell >>$Makefile <<'!NO!SUBS!'
938
939 $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
940         -@rm -f miniperl.xok
941 !NO!SUBS!
942
943         case $osname in
944         os390) $spitshell >>$Makefile <<'!NO!SUBS!'
945         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(LLIBPERL) $(static_ext) `cat ext.libs` $(libs)
946 !NO!SUBS!
947         ;;
948         *) $spitshell >>$Makefile <<'!NO!SUBS!'
949         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
950 !NO!SUBS!
951         ;;
952         esac
953
954         $spitshell >>$Makefile <<'!NO!SUBS!'
955
956 # Microperl.  This is just a convenience thing if one happens to
957 # build also the full Perl and therefore the real big Makefile:
958 # usually one should manually explicitly issue the below command.
959
960 .PHONY: microperl
961 microperl:
962         $(MAKE) -f Makefile.micro
963
964 !NO!SUBS!
965
966 fi
967
968 # Some environment have no system(), which mkpport uses.
969 # Let's try running the commands with shell.
970 case "${osname}" in
971 catamount)
972 $spitshell >>$Makefile <<!GROK!THIS!
973 .PHONY: makeppport
974 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
975         -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
976         (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
977         done
978
979 !GROK!THIS!
980 ;;
981 *)
982 $spitshell >>$Makefile <<'!NO!SUBS!'
983 .PHONY: makeppport
984 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
985         $(MINIPERL) mkppport
986
987 !NO!SUBS!
988 ;;
989 esac
990
991 $spitshell >>$Makefile <<'!NO!SUBS!'
992
993 .PHONY: preplibrary
994 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
995
996 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
997
998 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
999         $(MINIPERL) configpm
1000
1001 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
1002
1003 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
1004         $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
1005 #       Commented out so always runs, mktables looks at far more files than we
1006 #       can in this makefile to decide if needs to run or not
1007 #       touch uni.data
1008
1009 # $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
1010 # But also this ensures that all extensions are built before we try to scan
1011 # them, which picks up Devel::PPPort's documentation.
1012 pod/perltoc.pod: $(perltoc_pod_prereqs)  $(PERL_EXE) $(ext) pod/buildtoc
1013         $(RUN_PERL) -f pod/buildtoc -q
1014
1015 pod/perlapi.pod: pod/perlintern.pod
1016
1017 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
1018         $(MINIPERL) autodoc.pl
1019
1020 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1021         $(MINIPERL) pod/perlmodlib.PL -q
1022
1023 pod/perl5233delta.pod: pod/perldelta.pod
1024         $(RMS) pod/perl5233delta.pod
1025         $(LNS) perldelta.pod pod/perl5233delta.pod
1026
1027 extra.pods: $(MINIPERL_EXE)
1028         -@test ! -f extra.pods || rm -f `cat extra.pods`
1029         -@rm -f extra.pods
1030         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1031             nx=`echo $$x | sed -e "s/README\.//"`; \
1032             $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1033             echo "pod/perl"$$nx".pod" >> extra.pods ; \
1034         done
1035
1036 extras.make: $(PERL_EXE)
1037         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1038
1039 extras.test: $(PERL_EXE)
1040         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1041
1042 extras.install: $(PERL_EXE)
1043         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1044
1045 .PHONY: install install-strip install-all install-verbose install-silent \
1046         no-install install.perl install.man install.html
1047
1048 # Set this to an empty string to avoid an attempt of rebuild before install
1049 INSTALL_DEPENDENCE = all
1050
1051 no_install no-install: install-notify
1052
1053 install: install-all
1054 !NO!SUBS!
1055
1056
1057 for name in all notify silent strip verbose; do
1058     flags="--$name";
1059     flags=`echo $flags | sed -e 's/--all//'`
1060     if test "X$hostperl" != X; then
1061         $spitshell >>$Makefile <<EOT
1062
1063 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1064         \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1065         \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1066 EOT
1067     else
1068         $spitshell >>$Makefile <<EOT
1069
1070 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1071         \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1072         \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1073 EOT
1074     fi
1075
1076     test $name = notify || echo '       -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '\''@ARGV&&install(@ARGV)'\'' `cat extras.lst`' >>$Makefile
1077 done
1078
1079 if test "X$hostperl" != X; then
1080         $spitshell >>$Makefile <<'!NO!SUBS!'
1081 install.perl:   $(INSTALL_DEPENDENCE) installperl
1082         $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1083         -@test ! -s extras.lst || $(MAKE) extras.install
1084
1085 install.man:    all installman
1086         $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1087
1088 # XXX Experimental. Hardwired values, but useful for testing.
1089 # Eventually Configure could ask for some of these values.
1090 install.html: all installhtml
1091         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1092         $(HOST_PERL) installhtml   \
1093       --podroot=. --podpath=. --recurse  \
1094       --htmldir=$(privlib)/html   \
1095       --htmlroot=$(privlib)/html  \
1096       --splithead=pod/perlipc     \
1097       --splititem=pod/perlfunc    \
1098       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1099       --verbose
1100 !NO!SUBS!
1101 else
1102         $spitshell >>$Makefile <<'!NO!SUBS!'
1103 install.perl:   $(INSTALL_DEPENDENCE) installperl
1104         $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1105         -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1106
1107 install.man:    all installman
1108         $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1109
1110 # XXX Experimental. Hardwired values, but useful for testing.
1111 # Eventually Configure could ask for some of these values.
1112 install.html: all installhtml
1113         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1114         $(RUN_PERL) installhtml   \
1115       --podroot=. --podpath=. --recurse  \
1116       --htmldir=$(privlib)/html   \
1117       --htmlroot=$(privlib)/html  \
1118       --splithead=pod/perlipc     \
1119       --splititem=pod/perlfunc    \
1120       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1121       --verbose
1122 !NO!SUBS!
1123 fi
1124
1125 $spitshell >>$Makefile <<'!NO!SUBS!'
1126
1127 # I now supply perly.c with the kits, so the following section is
1128 # used only if you force bison to run by saying
1129 #       make regen_perly
1130 # You normally shouldn't remake perly.[ch].
1131
1132 .PHONY: regen_perly
1133
1134 run_byacc run-byacc:
1135         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1136
1137 # this outputs perly.h, perly.act and perly.tab
1138 regen_perly regen-perly:
1139         perl regen_perly.pl
1140
1141 # We don't want to regenerate perly.c and perly.h, but they might
1142 # appear out-of-date after a patch is applied or a new distribution is
1143 # made.
1144 perly.c: perly.y
1145         -@sh -c true
1146
1147 perly.h: perly.y
1148         -@sh -c true
1149
1150 SYM  = globvar.sym perlio.sym
1151
1152 SYMH = perlvars.h intrpvar.h
1153
1154 CHMOD_W = chmod +w
1155
1156 # The following files are generated automatically
1157 #       embed.pl:       proto.h embed.h embedvar.h perlapi.h perlapi.c
1158 #       opcode.pl:      opcode.h opnames.h pp_proto.h
1159 #       regcomp.pl:     regnodes.h
1160 #       warnings.pl:    warnings.h lib/warnings.pm
1161 #       feature.pl:     feature.h lib/feature.pm
1162 # The correct versions should be already supplied with the perl kit,
1163 # in case you don't have perl available.
1164 # To force them to be regenerated, run
1165 #       perl regen.pl
1166 # with your existing copy of perl
1167 # (make regen_headers is kept for backwards compatibility)
1168
1169 AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
1170                 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
1171                 lib/feature.pm feature.h
1172
1173 .PHONY: regen_headers regen_all
1174
1175 regen:  FORCE
1176         -perl regen.pl
1177         -perl regen/uconfig_h.pl
1178
1179 regen_headers regen-headers:    FORCE
1180         -perl regen.pl -v
1181         -perl regen/uconfig_h.pl -v
1182
1183 regen_meta regen-meta:  META.yml META.json
1184
1185 META.yml:   FORCE
1186         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1187
1188 META.json:   FORCE
1189         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1190
1191
1192 regen_all regen-all: regen regen_meta
1193
1194 .PHONY: manisort manicheck
1195
1196 manisort:       FORCE
1197         @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1198                 perl Porting/manisort -q -o MANIFEST; sh -c true)
1199
1200 manicheck:      FORCE
1201         perl Porting/manicheck
1202
1203 # Extensions:
1204 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1205 # automatically get built.  There should ordinarily be no need to change
1206 # any of this part of makefile.
1207 #
1208 # The dummy dependency is a place holder in case $(dynamic_ext) or
1209 # $(static_ext) is empty.
1210 #
1211 # DynaLoader may be needed for extensions that use Makefile.PL.
1212
1213 $(DYNALOADER):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1214         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1215
1216 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1217         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1218
1219 s_dummy $(static_ext):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1220         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1221
1222 n_dummy $(nonxs_ext):   $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1223         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL)
1224 !NO!SUBS!
1225
1226 $spitshell >>$Makefile <<EOF
1227 $extra_dep
1228 EOF
1229
1230 $spitshell >>$Makefile <<'!NO!SUBS!'
1231
1232 .PHONY: printconfig
1233 printconfig:
1234         @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1235
1236 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1237         realclean _realcleaner clobber _clobber \
1238         distclean veryclean _verycleaner
1239
1240 clean:          realclean
1241
1242 realclean:      _realcleaner _mopup
1243         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1244
1245 _clobber:
1246         -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1247         -rm -rf host
1248         rm -f t/test_state
1249         rm -f config.sh cppstdin Policy.sh extras.lst
1250         rm -f $(MANIFEST_SRT)
1251
1252 clobber:        _realcleaner _mopup _clobber
1253
1254 distclean:      clobber
1255
1256 # Like distclean but also removes emacs backups and *.orig.
1257 veryclean:      _verycleaner _mopup _clobber
1258         -@rm -f Obsolete Wanted
1259
1260 # Do not 'make _mopup' directly.
1261 _mopup:
1262         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1263         -rmdir .depending
1264         -@test -f extra.pods && rm -f `cat extra.pods`
1265         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1266         -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1267         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1268         -rm -f *perl.xok
1269         -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1270         -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1271         -rm -f config.arch config.over $(DTRACE_H)
1272
1273 _cleaner1:
1274         -cd os2; rm -f Makefile
1275         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1276         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1277         -@if test -f $(MINIPERL_EXE) ; then \
1278         for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1279         $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE="$(MAKE)" ; \
1280         done ; \
1281         else \
1282         sh $(CLEAN).sh ; \
1283         fi
1284         rm -f realclean.sh veryclean.sh
1285         -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1286
1287 # Dear POSIX, thanks for making the default to xargs to be
1288 # run once if nothhing is passed in. It is such a great help.
1289
1290 # Some systems do not support "?", so keep these files separate.
1291 _cleaner2:
1292         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1293         rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1294         rm -f t/$(PERL_EXE) t/rantests
1295         rm -rf t/tmp*
1296         rm -rf $(addedbyconf)
1297         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1298         rm -f $(private)
1299         rm -rf $(unidatafiles) $(unidatadirs)
1300         rm -rf lib/auto
1301         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1302         rm -f h2ph.man pstruct
1303         rm -rf .config
1304         rm -f preload
1305         rm -f pod2htmd.tmp
1306         rm -rf pod/perlfunc pod/perlipc
1307         -rmdir ext/B/lib
1308         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1309         -rmdir lib/version lib/threads lib/encoding lib/autodie/exception
1310         -rmdir lib/autodie/Scope lib/autodie lib/XS lib/Win32API lib/VMS
1311         -rmdir lib/Unicode/Collate/Locale lib/Unicode/Collate/CJK
1312         -rmdir lib/Unicode/Collate lib/Tie/Hash lib/Thread lib/Text
1313         -rmdir lib/Test/use lib/Test/Tester lib/Test/Builder/Tester
1314         -rmdir lib/Test/Builder/IO lib/Test/Builder lib/Test lib/Term
1315         -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1316         -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1317         -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1318         -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1319         -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Sub
1320         -rmdir lib/Search lib/Scalar lib/Pod/Text lib/Pod/Simple
1321         -rmdir lib/Pod/Perldoc lib/PerlIO/via lib/PerlIO lib/Perl
1322         -rmdir lib/Parse/CPAN lib/Parse lib/Params lib/Net/FTP lib/Module/Load
1323         -rmdir lib/Module/CoreList lib/Module lib/Memoize lib/Math/BigInt
1324         -rmdir lib/Math/BigFloat lib/Math lib/MIME lib/Locale/Maketext
1325         -rmdir lib/Locale/Codes lib/Locale lib/List/Util lib/List lib/JSON/PP
1326         -rmdir lib/JSON lib/IPC lib/IO/Uncompress/Adapter lib/IO/Uncompress
1327         -rmdir lib/IO/Socket lib/IO/Compress/Zlib lib/IO/Compress/Zip
1328         -rmdir lib/IO/Compress/Gzip lib/IO/Compress/Base
1329         -rmdir lib/IO/Compress/Adapter lib/IO/Compress lib/IO
1330         -rmdir lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash lib/HTTP
1331         -rmdir lib/Filter/Util lib/Filter lib/File/Spec lib/ExtUtils/Typemaps
1332         -rmdir lib/ExtUtils/ParseXS lib/ExtUtils/MakeMaker/version
1333         -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1334         -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1335         -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1336         -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1337         -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1338         -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1339         -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1340         -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Plugin
1341         -rmdir lib/CPAN/Meta/History lib/CPAN/Meta lib/CPAN/LWP
1342         -rmdir lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP lib/CPAN/Exception
1343         -rmdir lib/CPAN/API lib/CPAN lib/Attribute lib/Archive/Tar lib/Archive
1344         -rmdir lib/App/Prove/State/Result lib/App/Prove/State lib/App/Prove
1345         -rmdir lib/App
1346
1347 _realcleaner:
1348         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1349         @$(LDLIBPTH) $(MAKE) _cleaner2
1350
1351 _verycleaner:
1352         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1353         @$(LDLIBPTH) $(MAKE) _cleaner2
1354         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1355
1356 .PHONY: lint
1357 lint: $(c)
1358         rm -f *.ln
1359         lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1360
1361 .PHONY: splint
1362 splint: $(c)
1363         splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1364
1365 # Need to unset during recursion to go out of loop.
1366 # The README below ensures that the dependency list is never empty and
1367 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1368
1369 MAKEDEPEND = Makefile makedepend
1370
1371 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1372         $(MAKE) depend MAKEDEPEND=
1373 !NO!SUBS!
1374
1375 for f in $SH; do
1376     file=`SH_to_target $f`
1377     $spitshell >>$Makefile <<!GROK!THIS!
1378
1379 $file: $f config.sh
1380         \$(SHELL) $f
1381 !GROK!THIS!
1382 done
1383
1384 $spitshell >>$Makefile <<'!NO!SUBS!'
1385
1386 .PHONY: depend
1387 depend: makedepend $(DTRACE_H) $(generated_headers)
1388         sh ./makedepend MAKE="$(MAKE)" cflags
1389
1390 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1391         test_prep_reonly test_tty test-tty test_notty test-notty \
1392         test_harness test_harness_notty minitest test-reonly _test
1393
1394 _test:
1395         echo >&2 The _test target is deprecated. Please upgrade your smoker
1396         $(RUN_TESTS) choose
1397
1398 # Cannot delegate rebuilding of t/perl to make
1399 # to allow interlaced test and minitest
1400
1401 # Architecture-neutral stuff:
1402
1403 test_prep_pre: preplibrary utilities $(nonxs_ext)
1404 !NO!SUBS!
1405
1406 case "$targethost" in
1407 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1408 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1409         $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods)
1410         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1411
1412 !NO!SUBS!
1413 ;;
1414 *) $spitshell >>$Makefile <<!GROK!THIS!
1415 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1416         \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1417         \$(generated_pods)
1418         $to libperl.*
1419         $to t/*
1420         $to lib/*
1421         $to TestInit.pm
1422         $to win32/FindExt.pm
1423         $to regen/*
1424         $to pod/*
1425         $to MANIFEST
1426         $to Porting/*
1427         $to cpan/*/t
1428         $to dist/*/t
1429         $to ext/*/t
1430         $to cpan/Archive-Tar/*
1431         $to cpan/Module-Metadata/*
1432         $to cpan/Term-Cap/test.pl
1433         $to cpan/Pod-Usage/*
1434         $to cpan/Pod-Parser/*
1435         $to cpan/IO-Compress/*
1436         $to cpan/HTTP-Tiny/lib/*
1437         $to cpan/Filter-Util-Call/filter-util.pl
1438         $to cpan/Digest-MD5/*
1439         $to cpan/Digest-SHA/*
1440         $to cpan/Test-Simple/*
1441         $to cpan/Pod-Parser/lib/*
1442         $to cpan/Test-Harness/*
1443         $to cpan/Scalar-List-Utils/*
1444         $to ext/IPC-Open3/*
1445         $to ext/Tie-Memoize/*
1446         $to ext/POSIX/*
1447         $to dist/IO/*
1448 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1449         $to config_h.SH
1450         $to perl.h
1451         $to cflags
1452         $to *.h
1453 # --- For t/porting/customized.t
1454         $to vutil.c
1455         $to vxs.inc
1456 # --- For t/TEST
1457         $to config.sh
1458 # --- For lib/diagnostics.t with -Duseshrplib
1459         $to \$(PERL_EXE)
1460         cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1461         $to t/\$(PERL_EXE)
1462
1463 !GROK!THIS!
1464 ;;
1465 esac
1466
1467 $spitshell >>$Makefile <<'!NO!SUBS!'
1468 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1469         $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1470         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1471 !NO!SUBS!
1472
1473 case "$targethost" in
1474 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1475
1476 test check: test_prep
1477         $(RUN_TESTS) choose
1478
1479 !NO!SUBS!
1480 ;;
1481 *) $spitshell >>$Makefile <<!GROK!THIS!
1482
1483 test check: test_prep
1484         $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1485
1486 !GROK!THIS!
1487 ;;
1488 esac
1489
1490 $spitshell >>$Makefile <<'!NO!SUBS!'
1491 test_tty test-tty: test_prep
1492         $(RUN_TESTS) tty
1493
1494 test_notty test-notty: test_prep
1495         $(RUN_TESTS) no-tty
1496
1497 !NO!SUBS!
1498
1499 case "${osname}${osvers}" in
1500 linux*|darwin*)
1501         $spitshell >>$Makefile <<'!NO!SUBS!'
1502 # Targets for valgrind testing:
1503
1504 test.valgrind check.valgrind:   test_prep
1505         @echo "Checking usemymalloc='n' in config.sh..."
1506         @grep "^usemymalloc="    config.sh
1507         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1508         @echo "And of course you have to have valgrind..."
1509         $(VALGRIND) $(VG_TEST) || exit 1
1510         PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1511 !NO!SUBS!
1512         ;;
1513 esac
1514
1515 $spitshell >>$Makefile <<'!NO!SUBS!'
1516
1517 # minitest can't depend on lib/Config.pm because that might be where miniperl
1518 # is crashing.
1519 minitest_prep:
1520         -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1521         @echo " "
1522         @echo "You may see some irrelevant test failures if you have been unable"
1523         @echo "to build lib/Config.pm, or the Unicode data files."
1524         @echo " "
1525         - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE))
1526
1527 MINITEST_TESTS = base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t
1528
1529 minitest: $(MINIPERL_EXE) minitest_prep
1530         - cd t && $(RUN_PERL) TEST $(MINITEST_TESTS) </dev/tty
1531
1532 minitest-notty minitest_notty: $(MINIPERL_EXE) minitest_prep
1533         - cd t && PERL_SKIP_TTY_TEST=1 $(RUN_PERL) TEST $(MINITEST_TESTS)
1534
1535 # Test via harness
1536
1537 test_harness test-harness: test_prep
1538         TESTFILE=harness $(RUN_TESTS) choose
1539
1540 test_harness_notty: test_prep
1541         HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1542
1543 test_reonly test-reonly: test_prep_reonly
1544         TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1545
1546
1547 # Porting tests (well-formedness of pod, manifest, etc)
1548
1549 test_porting test-porting: test_prep
1550         cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1551
1552 # Handy way to run perlbug -ok without having to install and run the
1553 # installed perlbug. We don't re-run the tests here - we trust the user.
1554 # Please *don't* use this unless all tests pass.
1555 # If you want to report test failures, use "make nok" instead.
1556
1557 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1558
1559 ok:     utilities
1560         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1561
1562 okfile: utilities
1563         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1564
1565 oknack: utilities
1566         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1567
1568 okfilenack:     utilities
1569         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1570
1571 nok:    utilities
1572         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1573
1574 nokfile:        utilities
1575         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1576
1577 noknack:        utilities
1578         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1579
1580 nokfilenack:    utilities
1581         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1582
1583 .PHONY: clist hlist
1584
1585 clist:  $(c)
1586         echo $(c) | tr ' ' $(TRNL) >.clist
1587
1588 hlist:  $(h)
1589         echo $(h) | tr ' ' $(TRNL) >.hlist
1590
1591 .PHONY: distcheck
1592 distcheck: FORCE
1593         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1594
1595 .PHONY: ctags
1596
1597 ctags:
1598         ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1599
1600 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1601 # If this runs make out of memory, delete /usr/include lines.
1602 !NO!SUBS!
1603
1604 $eunicefix Makefile
1605 $rm -f $firstmakefile
1606
1607 # Now do any special processing required before building.
1608
1609 case "$ebcdic" in
1610 define)
1611     xxx=''
1612     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1613 case "$osname" in
1614 os390|posix-bc)
1615     ;;
1616 *)
1617     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1618     ;;
1619 esac
1620     case "$xxx" in
1621     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1622     esac
1623     ;;
1624 esac
1625
1626 # ex: set ts=8 sts=4 sw=4 noet: