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