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