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