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