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