This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Clarifications to Perl_langinfo
[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/perl52710delta.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/perl52710delta.pod: pod/perldelta.pod
1129         $(RMS) pod/perl52710delta.pod
1130         $(LNS) perldelta.pod pod/perl52710delta.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 $spitshell >>$Makefile <<EOT
1164
1165 dist/Storable/lib/Storable/Limit.pm : \$(PERL_EXE) dist/Storable/stacksize $storable_limit_dep
1166         cd dist/Storable ; \$(LDLIBPTH) \$(MAKE) lib/Storable/Limit.pm
1167
1168 lib/Storable/Limit.pm : dist/Storable/lib/Storable/Limit.pm
1169         test -d lib/Storable || mkdir lib/Storable
1170         cp dist/Storable/lib/Storable/Limit.pm lib/Storable/Limit.pm
1171 EOT
1172
1173 common_build_deps="$common_build_deps lib/Storable/Limit.pm"
1174
1175 fi
1176
1177 for name in all notify silent strip verbose; do
1178     flags="--$name";
1179     flags=`echo $flags | sed -e 's/--all//'`
1180     if test "X$hostperl" != X; then
1181         $spitshell >>$Makefile <<EOT
1182
1183 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1184         \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1185         \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1186 EOT
1187     else
1188         $spitshell >>$Makefile <<EOT
1189
1190 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1191         \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1192         \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1193 EOT
1194     fi
1195
1196     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
1197 done
1198
1199 if test "X$hostperl" != X; then
1200         LOCAL_PERL='$(HOST_PERL)'
1201         $spitshell >>$Makefile <<'!NO!SUBS!'
1202 install.perl:   $(INSTALL_DEPENDENCE) installperl
1203         $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1204         -@test ! -s extras.lst || $(MAKE) extras.install
1205 !NO!SUBS!
1206 else
1207         LOCAL_PERL='$(RUN_PERL)'
1208         $spitshell >>$Makefile <<'!NO!SUBS!'
1209 install.perl:   $(INSTALL_DEPENDENCE) installperl
1210         $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1211         -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1212
1213 !NO!SUBS!
1214 fi
1215
1216 $spitshell >>$Makefile <<!GROK!THIS!
1217 install.man:    all installman
1218         ${LOCAL_PERL} installman --destdir=\$(DESTDIR) \$(INSTALLFLAGS)
1219
1220 # XXX Experimental. Hardwired values, but useful for testing.
1221 # Eventually Configure could ask for some of these values.
1222 install.html: all installhtml
1223         -@test -f README.vms && cd vms && \$(LNS) ../README.vms README_vms.pod && cd ..
1224         ${LOCAL_PERL} installhtml   \\
1225       --podroot=. --podpath=. --recurse  \\
1226       --htmldir=\$(privlib)/html   \\
1227       --splithead=pod/perlipc     \\
1228       --splititem=pod/perlfunc    \\
1229       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \\
1230       --verbose
1231 !GROK!THIS!
1232
1233 $spitshell >>$Makefile <<'!NO!SUBS!'
1234
1235 # I now supply perly.c with the kits, so the following section is
1236 # used only if you force bison to run by saying
1237 #       make regen_perly
1238 # You normally shouldn't remake perly.[ch].
1239
1240 .PHONY: regen_perly
1241
1242 run_byacc run-byacc:
1243         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1244
1245 # this outputs perly.h, perly.act and perly.tab
1246 regen_perly regen-perly:
1247         perl regen_perly.pl
1248
1249 # We don't want to regenerate perly.c and perly.h, but they might
1250 # appear out-of-date after a patch is applied or a new distribution is
1251 # made.
1252 perly.c: perly.y
1253         -@sh -c true
1254
1255 perly.h: perly.y
1256         -@sh -c true
1257
1258 SYM  = globvar.sym perlio.sym
1259
1260 SYMH = perlvars.h intrpvar.h
1261
1262 CHMOD_W = chmod +w
1263
1264 # The following files are generated automatically
1265 #       embed.pl:       proto.h embed.h embedvar.h perlapi.h perlapi.c
1266 #       opcode.pl:      opcode.h opnames.h pp_proto.h
1267 #       regcomp.pl:     regnodes.h
1268 #       warnings.pl:    warnings.h lib/warnings.pm
1269 #       feature.pl:     feature.h lib/feature.pm
1270 # The correct versions should be already supplied with the perl kit,
1271 # in case you don't have perl available.
1272 # To force them to be regenerated, run
1273 #       perl regen.pl
1274 # with your existing copy of perl
1275 # (make regen_headers is kept for backwards compatibility)
1276
1277 .PHONY: regen_headers regen_all
1278
1279 regen:  FORCE
1280         -perl regen.pl
1281         -perl regen/uconfig_h.pl
1282
1283 regen_headers regen-headers:    FORCE
1284         -perl regen.pl -v
1285         -perl regen/uconfig_h.pl -v
1286
1287 regen_meta regen-meta:  META.yml META.json
1288
1289 META.yml:   FORCE
1290         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1291
1292 META.json:   FORCE
1293         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1294
1295
1296 regen_all regen-all: regen regen_meta
1297
1298 .PHONY: manisort manicheck
1299
1300 manisort:       FORCE
1301         @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1302                 perl Porting/manisort -q -o MANIFEST; sh -c true)
1303
1304 manicheck:      FORCE
1305         perl Porting/manicheck
1306
1307 # Extensions:
1308 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1309 # automatically get built.  There should ordinarily be no need to change
1310 # any of this part of makefile.
1311 #
1312 # The dummy dependency is a place holder in case $(dynamic_ext) or
1313 # $(static_ext) is empty.
1314 #
1315 # DynaLoader may be needed for extensions that use Makefile.PL.
1316
1317 $(DYNALOADER):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1318         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1319
1320 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1321         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1322
1323 s_dummy $(static_ext):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1324         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1325
1326 n_dummy $(nonxs_ext):   $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1327         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL)
1328 !NO!SUBS!
1329
1330 $spitshell >>$Makefile <<EOF
1331 $extra_dep
1332 EOF
1333
1334 $spitshell >>$Makefile <<'!NO!SUBS!'
1335
1336 .PHONY: printconfig
1337 printconfig:
1338         @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1339
1340 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1341         realclean _realcleaner clobber _clobber \
1342         distclean veryclean _verycleaner
1343
1344 clean:          realclean
1345
1346 realclean:      _realcleaner _mopup
1347         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1348
1349 _clobber:
1350         -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1351         -rm -rf host
1352         rm -f t/test_state
1353         rm -f config.sh cppstdin Policy.sh extras.lst
1354         rm -f $(MANIFEST_SRT)
1355
1356 clobber:        _realcleaner _mopup _clobber
1357
1358 distclean:      clobber
1359
1360 # Like distclean but also removes emacs backups and *.orig.
1361 veryclean:      _verycleaner _mopup _clobber
1362         -@rm -f Obsolete Wanted
1363
1364 # Do not 'make _mopup' directly.
1365 _mopup:
1366         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1367         -rmdir .depending
1368         -@test -f extra.pods && rm -f `cat extra.pods`
1369         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1370         -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1371         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1372         -rm -f *perl.xok
1373         -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1374         -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1375         -rm -f config.arch config.over $(DTRACE_H)
1376
1377 _cleaner1:
1378         -cd os2; rm -f Makefile
1379         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1380         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1381         -@if test -f $(MINIPERL_EXE) ; then \
1382         for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1383         $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE="$(MAKE)" ; \
1384         done ; \
1385         else \
1386         sh $(CLEAN).sh ; \
1387         fi
1388         rm -f realclean.sh veryclean.sh
1389         -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1390
1391 # Dear POSIX, thanks for making the default to xargs to be
1392 # run once if nothhing is passed in. It is such a great help.
1393
1394 # Some systems do not support "?", so keep these files separate.
1395 _cleaner2:
1396         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1397         rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1398         rm -f t/$(PERL_EXE) t/rantests
1399         rm -rf t/tmp*
1400         rm -rf $(addedbyconf)
1401         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1402         rm -f $(private)
1403         rm -rf $(unidatafiles) $(unidatadirs)
1404         rm -rf lib/auto
1405         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1406         rm -f h2ph.man
1407         rm -rf .config
1408         rm -f preload
1409         rm -f pod2htmd.tmp
1410         rm -rf pod/perlfunc pod/perlipc
1411         -rmdir ext/B/lib
1412         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1413         -rmdir lib/version lib/threads lib/inc/ExtUtils lib/inc lib/encoding
1414         -rmdir lib/autodie/exception lib/autodie/Scope lib/autodie lib/XS
1415         -rmdir lib/Win32API lib/VMS lib/Unicode/Collate/Locale
1416         -rmdir lib/Unicode/Collate/CJK lib/Unicode/Collate lib/Tie/Hash
1417         -rmdir lib/Thread lib/Text lib/Test2/Util lib/Test2/Tools
1418         -rmdir lib/Test2/IPC/Driver lib/Test2/IPC lib/Test2/Hub/Interceptor
1419         -rmdir lib/Test2/Hub lib/Test2/Formatter lib/Test2/EventFacet
1420         -rmdir lib/Test2/Event/TAP lib/Test2/Event lib/Test2/API lib/Test2
1421         -rmdir lib/Test/use lib/Test/Tester lib/Test/Builder/Tester
1422         -rmdir lib/Test/Builder/IO lib/Test/Builder lib/Test lib/Term
1423         -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1424         -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1425         -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1426         -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1427         -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Sub
1428         -rmdir lib/Search lib/Scalar lib/Pod/Text lib/Pod/Simple
1429         -rmdir lib/Pod/Perldoc lib/PerlIO/via lib/PerlIO lib/Perl
1430         -rmdir lib/Parse/CPAN lib/Parse lib/Params lib/Net/FTP lib/Module/Load
1431         -rmdir lib/Module/CoreList lib/Module lib/Memoize lib/Math/BigInt
1432         -rmdir lib/Math/BigFloat lib/Math lib/MIME lib/Locale/Maketext
1433         -rmdir lib/Locale/Codes lib/Locale lib/List/Util lib/List lib/JSON/PP
1434         -rmdir lib/JSON lib/IPC lib/IO/Uncompress/Adapter lib/IO/Uncompress
1435         -rmdir lib/IO/Socket lib/IO/Compress/Zlib lib/IO/Compress/Zip
1436         -rmdir lib/IO/Compress/Gzip lib/IO/Compress/Base
1437         -rmdir lib/IO/Compress/Adapter lib/IO/Compress lib/IO
1438         -rmdir lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash lib/HTTP
1439         -rmdir lib/Filter/Util lib/Filter lib/File/Spec lib/ExtUtils/Typemaps
1440         -rmdir lib/ExtUtils/ParseXS lib/ExtUtils/MakeMaker/version
1441         -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1442         -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1443         -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1444         -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1445         -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1446         -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1447         -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1448         -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Plugin
1449         -rmdir lib/CPAN/Meta/History lib/CPAN/Meta lib/CPAN/LWP
1450         -rmdir lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP lib/CPAN/Exception
1451         -rmdir lib/CPAN/API lib/CPAN lib/Attribute lib/Archive/Tar lib/Archive
1452         -rmdir lib/App/Prove/State/Result lib/App/Prove/State lib/App/Prove
1453         -rmdir lib/App lib/Amiga
1454
1455 _realcleaner:
1456         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1457         @$(LDLIBPTH) $(MAKE) _cleaner2
1458
1459 _verycleaner:
1460         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1461         @$(LDLIBPTH) $(MAKE) _cleaner2
1462         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1463
1464 .PHONY: lint
1465 lint: $(c)
1466         rm -f *.ln
1467         lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1468
1469 cscopeflags = -Rb  # Recursive, build-only.
1470
1471 .PHONY: cscope
1472 # To query the cscope.out "cscope -dLnsymbol" where n = 0 means uses,
1473 # 1 = definitions, 2 = callees, 3 = callers, for example
1474 # "cscope -dL1Perl_mg_set" or run cscope interactively (no arguments).
1475 cscope.out cscope: $(c) $(h)
1476         cscope $(cscopeflags)
1477
1478 # Need to unset during recursion to go out of loop.
1479 # The README below ensures that the dependency list is never empty and
1480 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1481
1482 MAKEDEPEND = Makefile makedepend
1483
1484 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1485         $(MAKE) depend MAKEDEPEND=
1486 !NO!SUBS!
1487
1488 for f in $SH; do
1489     file=`SH_to_target $f`
1490     $spitshell >>$Makefile <<!GROK!THIS!
1491
1492 $file: $f config.sh
1493         \$(SHELL) $f
1494 !GROK!THIS!
1495 done
1496
1497 $spitshell >>$Makefile <<'!NO!SUBS!'
1498
1499 .PHONY: depend
1500 depend: makedepend $(DTRACE_H) $(generated_headers)
1501         sh ./makedepend MAKE="$(MAKE)" cflags
1502
1503 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1504         test_prep_reonly test_tty test-tty test_notty test-notty \
1505         test_harness test_harness_notty minitest test-reonly _test
1506
1507 # The _test target is there just for Test::Smoke, which does a make test_prep
1508 # always before invoking this target, thus preventing checking again
1509 _test:
1510         $(RUN_TESTS) choose
1511
1512 # Cannot delegate rebuilding of t/perl to make
1513 # to allow interlaced test and minitest
1514
1515 # Architecture-neutral stuff:
1516
1517 test_prep_pre: preplibrary utilities $(nonxs_ext)
1518 !NO!SUBS!
1519
1520 case "$targethost" in
1521 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1522 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1523         $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods) common_build
1524         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1525
1526 !NO!SUBS!
1527 ;;
1528 *) $spitshell >>$Makefile <<!GROK!THIS!
1529 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1530         \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1531         \$(generated_pods) common_build
1532         $to libperl.*
1533         $to t/*
1534         $to lib/*
1535         $to TestInit.pm
1536         $to win32/FindExt.pm
1537         $to regen/*
1538         $to pod/*
1539         $to MANIFEST
1540         $to Porting/*
1541         $to cpan/*/t
1542         $to dist/*/t
1543         $to ext/*/t
1544         $to cpan/Archive-Tar/*
1545         $to cpan/Module-Metadata/*
1546         $to cpan/Term-Cap/test.pl
1547         $to cpan/Pod-Usage/*
1548         $to cpan/Pod-Parser/*
1549         $to cpan/IO-Compress/*
1550         $to cpan/HTTP-Tiny/lib/*
1551         $to cpan/Filter-Util-Call/filter-util.pl
1552         $to cpan/Digest-MD5/*
1553         $to cpan/Digest-SHA/*
1554         $to cpan/Test-Simple/*
1555         $to cpan/Pod-Parser/lib/*
1556         $to cpan/Test-Harness/*
1557         $to cpan/Scalar-List-Utils/*
1558         $to ext/IPC-Open3/*
1559         $to ext/Tie-Memoize/*
1560         $to ext/POSIX/*
1561         $to dist/IO/*
1562 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1563         $to config_h.SH
1564         $to perl.h
1565         $to cflags
1566         $to *.h
1567 # --- For t/porting/customized.t
1568         $to vutil.c
1569         $to vxs.inc
1570 # --- For t/TEST
1571         $to config.sh
1572 # --- For lib/diagnostics.t with -Duseshrplib
1573         $to \$(PERL_EXE)
1574         cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1575         $to t/\$(PERL_EXE)
1576
1577 !GROK!THIS!
1578 ;;
1579 esac
1580
1581 $spitshell >>$Makefile <<'!NO!SUBS!'
1582 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1583         $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1584         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1585 !NO!SUBS!
1586
1587 case "$targethost" in
1588 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1589
1590 test check: test_prep
1591         $(RUN_TESTS) choose
1592
1593 !NO!SUBS!
1594 ;;
1595 *) $spitshell >>$Makefile <<!GROK!THIS!
1596
1597 test check: test_prep
1598         $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1599
1600 !GROK!THIS!
1601 ;;
1602 esac
1603
1604 $spitshell >>$Makefile <<'!NO!SUBS!'
1605 test_tty test-tty: test_prep
1606         $(RUN_TESTS) tty
1607
1608 test_notty test-notty: test_prep
1609         $(RUN_TESTS) no-tty
1610
1611 !NO!SUBS!
1612
1613 case "${osname}${osvers}" in
1614 linux*|darwin*)
1615         $spitshell >>$Makefile <<'!NO!SUBS!'
1616 # Targets for valgrind testing:
1617
1618 test.valgrind check.valgrind:   test_prep
1619         @echo "Checking usemymalloc='n' in config.sh..."
1620         @grep "^usemymalloc="    config.sh
1621         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1622         @echo "And of course you have to have valgrind..."
1623         $(VALGRIND) $(VG_TEST) || exit 1
1624         PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1625 !NO!SUBS!
1626         ;;
1627 esac
1628
1629 $spitshell >>$Makefile <<'!NO!SUBS!'
1630
1631 # minitest can't depend on lib/Config.pm because that might be where miniperl
1632 # is crashing.
1633 minitest_prep:
1634         -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1635         @echo " "
1636         @echo "You may see some irrelevant test failures if you have been unable"
1637         @echo "to build lib/Config.pm, or the Unicode data files."
1638         @echo " "
1639         - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE))
1640
1641 MINITEST_TESTS = base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t
1642
1643 minitest: $(MINIPERL_EXE) minitest_prep
1644         - cd t && $(RUN_PERL) TEST $(MINITEST_TESTS) <$(devtty)
1645
1646 minitest-notty minitest_notty: $(MINIPERL_EXE) minitest_prep
1647         - cd t && PERL_SKIP_TTY_TEST=1 $(RUN_PERL) TEST $(MINITEST_TESTS)
1648
1649 # Test via harness
1650
1651 test_harness test-harness: test_prep
1652         TESTFILE=harness $(RUN_TESTS) choose
1653
1654 test_harness_notty: test_prep
1655         HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1656
1657 test_reonly test-reonly: test_prep_reonly
1658         TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1659
1660
1661 # Porting tests (well-formedness of pod, manifest, etc)
1662
1663 test_porting test-porting: test_prep
1664         cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1665
1666 !NO!SUBS!
1667
1668 $spitshell>>$Makefile <<!GROK!THIS!
1669
1670 # intended as a common way to add dependencies to test-prep and all
1671 common_build: $common_build_deps
1672
1673 !GROK!THIS!
1674
1675 $spitshell >>$Makefile <<'!NO!SUBS!'
1676
1677 # Handy way to run perlbug -ok without having to install and run the
1678 # installed perlbug. We don't re-run the tests here - we trust the user.
1679 # Please *don't* use this unless all tests pass.
1680 # If you want to report test failures, use "make nok" instead.
1681
1682 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1683
1684 ok:     utilities
1685         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1686
1687 okfile: utilities
1688         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1689
1690 oknack: utilities
1691         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1692
1693 okfilenack:     utilities
1694         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1695
1696 nok:    utilities
1697         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1698
1699 nokfile:        utilities
1700         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1701
1702 noknack:        utilities
1703         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1704
1705 nokfilenack:    utilities
1706         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1707
1708 .PHONY: clist hlist
1709
1710 clist:  $(c)
1711         echo $(c) | tr ' ' $(TRNL) >.clist
1712
1713 hlist:  $(h)
1714         echo $(h) | tr ' ' $(TRNL) >.hlist
1715
1716 .PHONY: distcheck
1717 distcheck: FORCE
1718         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1719
1720 .PHONY: ctags
1721
1722 TAGS: $(c1) $(c2) $(c3) $(c4) $(c5) $(h)
1723         etags $(c1) $(c2) $(c3) $(c4) $(c5) $(h)
1724
1725 ctags:
1726         ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1727
1728 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1729 # If this runs make out of memory, delete /usr/include lines.
1730 !NO!SUBS!
1731
1732 $eunicefix Makefile
1733 $rm -f $firstmakefile
1734
1735 # Now do any special processing required before building.
1736
1737 case "$ebcdic" in
1738 define)
1739     xxx=''
1740     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1741 case "$osname" in
1742 os390|posix-bc)
1743     ;;
1744 *)
1745     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1746     ;;
1747 esac
1748     case "$xxx" in
1749     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1750     esac
1751     ;;
1752 esac
1753
1754 # ex: set ts=8 sts=4 sw=4 noet: