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