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