This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
e7c828785db7234381e65a0802c03439ab80ca6e
[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/perl5233delta.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
713 $spitshell >>$Makefile <<'!NO!SUBS!'
714 perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
715         $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
716
717 # The file ext.libs is a list of libraries that must be linked in
718 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
719 # static extension Makefile's add to it.
720 ext.libs: $(static_ext)
721         -@test -f ext.libs || touch ext.libs
722
723 !NO!SUBS!
724
725 # How to build libperl.  This is still rather convoluted.
726 # Load up custom Makefile.SH fragment for shared loading and executables:
727 case "$osname" in
728 *)
729         Makefile_s="$osname/Makefile.SHs"
730         ;;
731 esac
732
733 case "$osname" in
734 aix)
735         $spitshell >>$Makefile <<!GROK!THIS!
736 LIBS                    = $perllibs
737 # In AIX we need to change this for building Perl itself from
738 # its earlier definition (which is for building external
739 # extensions *after* Perl has been built and installed)
740 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
741
742 !GROK!THIS!
743         case "$useshrplib" in
744         define|true|[yY]*)
745                 $spitshell >>$Makefile <<'!NO!SUBS!'
746
747 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
748 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
749
750 $(LIBPERL_NONSHR): $(obj)
751         $(RMS) $(LIBPERL_NONSHR)
752         $(AR) rcu $(LIBPERL_NONSHR) $(obj)
753
754 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)  perlmini$(OBJ_EXT)
755         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
756             opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
757
758 MINIPERLEXP             = $(MINIPERL_NONSHR)
759
760 LIBPERLEXPORT           = perl.exp
761
762 !NO!SUBS!
763                 
764                 ;;
765         *)      
766                 $spitshell >>$Makefile <<'!NO!SUBS!'
767 MINIPERLEXP             = $(MINIPERL_EXE)
768
769 PERLEXPORT              = perl.exp
770
771 !NO!SUBS!
772         ;;
773         esac
774         $spitshell >>$Makefile <<'!NO!SUBS!'
775 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
776         ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
777
778 !NO!SUBS!
779         ;;
780 os2)
781         $spitshell >>$Makefile <<'!NO!SUBS!'
782 MINIPERLEXP             = miniperl
783
784 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
785         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
786
787 !NO!SUBS!
788         ;;
789 cygwin)
790         $spitshell >>$Makefile <<'!NO!SUBS!'
791 cygwin.c: cygwin/cygwin.c
792         $(LNS) cygwin/cygwin.c
793
794 LIBPERL_NONSHR          = libperl$(LIB_EXT)
795
796 $(LIBPERL_NONSHR): $(obj)
797         $(RMS) $(LIBPERL_NONSHR)
798         $(AR) rcu $(LIBPERL_NONSHR) $(obj)
799
800 !NO!SUBS!
801         ;;
802 esac
803
804 if test -s $Makefile_s ; then
805         . $Makefile_s
806         $spitshell >>$Makefile <<!GROK!THIS!
807
808 Makefile: $Makefile_s
809 !GROK!THIS!
810 else
811         case "$dtrace_h" in
812         ?*)
813                 $spitshell >>$Makefile <<'!NO!SUBS!'
814 # dtrace dicards const qualifiers from arguments, put them back
815 $(DTRACE_H): perldtrace.d
816         $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
817         sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
818         $(RMS) $(DTRACE_H).in
819
820 mydtrace.h: $(DTRACE_H)
821
822 !NO!SUBS!
823                 ;;
824         esac
825         case "$dtrace_o" in
826         ?*)
827                 $spitshell >>$Makefile <<'!NO!SUBS!'
828 $(DTRACE_O): perldtrace.d $(ndt_obj)
829         $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
830
831 $(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
832         $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
833
834 !NO!SUBS!
835                 ;;
836     esac
837         $spitshell >>$Makefile <<'!NO!SUBS!'
838 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
839 !NO!SUBS!
840         case "$useshrplib" in
841         true)
842                 $spitshell >>$Makefile <<'!NO!SUBS!'
843         rm -f $@
844         $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
845 !NO!SUBS!
846                 case "$osname" in
847                 aix)
848                         $spitshell >>$Makefile <<'!NO!SUBS!'
849         rm -f libperl$(OBJ_EXT)
850         mv $@ libperl$(OBJ_EXT)
851         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
852 !NO!SUBS!
853                         ;;
854                 esac
855                 ;;
856         *)
857                 $spitshell >>$Makefile <<'!NO!SUBS!'
858         rm -f $(LIBPERL)
859         $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
860         @$(ranlib) $(LIBPERL)
861 !NO!SUBS!
862                 ;;
863         esac
864         $spitshell >>$Makefile <<'!NO!SUBS!'
865
866 # How to build executables.
867
868 # The $& notation tells Sequent machines that it can do a parallel make,
869 # and is harmless otherwise.
870 # The miniperl -w -MExporter line is a basic cheap test to catch errors
871 # before make goes on to run preplibrary and then MakeMaker on extensions.
872 # This is very handy because later errors are often caused by miniperl
873 # build problems but that's not obvious to the novice.
874 # The Module used here must not depend on Config or any extensions.
875
876 # The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
877 # lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
878 # miniperl to exist first permits us to
879 # a) have one rule generate both miniperl and lib/buildcustomize.pl
880 #    (so that lib/buildcustomize.pl is always available. This simplifies things)
881 # b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
882
883 $(MINIPERL_EXE): lib/buildcustomize.pl
884
885 !NO!SUBS!
886
887         case "${osname}${osvers}" in
888         aix*)
889                 $spitshell >>$Makefile <<'!NO!SUBS!'
890 lib/buildcustomize.pl: $& $(mini_obj)
891         $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
892         $(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'
893         $(MINIPERL) -f write_buildcustomize.pl
894 !NO!SUBS!
895                 ;;
896         next4*)
897                 $spitshell >>$Makefile <<'!NO!SUBS!'
898 lib/buildcustomize.pl: $& $(mini_obj) write    ldcustomize.pl
899         $(CC) -o $(MINIPERL_EXE) $(mini_obj    libs)
900         $(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'
901         $(MINIPERL) -f write_buildcustomize.pl    
902 !NO!SUBS!
903                 ;;
904         darwin*)
905                 case "$osvers" in
906                 [1-6].*) ;;
907                 *) case "$ldflags" in
908                     *"-flat_namespace"*) ;;
909                     *) # to allow opmini.o to override stuff in libperl.dylib
910                 $spitshell >>$Makefile <<!NO!SUBS!
911 NAMESPACEFLAGS = -force_flat_namespace
912 !NO!SUBS!
913                        ;;
914                     esac
915                     ;;
916                 esac
917                 $spitshell >>$Makefile <<'!NO!SUBS!'
918 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
919         -@rm -f miniperl.xok
920         $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
921             $(mini_obj) $(libs)
922         $(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'
923         $(MINIPERL) -f write_buildcustomize.pl
924 !NO!SUBS!
925                 ;;
926         *)
927                 if test "X$hostperl" != X; then
928                         $spitshell >>$Makefile <<!GROK!THIS!
929 lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl
930         -@rm -f miniperl.xok
931         -@rm \$(MINIPERL_EXE)
932         \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
933         \$(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'
934         \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
935 !GROK!THIS!
936                 else
937                         $spitshell >>$Makefile <<'!NO!SUBS!'
938 lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
939         -@rm -f miniperl.xok
940         $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
941             $(mini_obj) $(libs)
942         $(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'
943         $(MINIPERL) -f write_buildcustomize.pl
944 !NO!SUBS!
945                 fi
946                 ;;
947         esac
948
949         $spitshell >>$Makefile <<'!NO!SUBS!'
950
951 $(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
952         -@rm -f miniperl.xok
953 !NO!SUBS!
954
955         case $osname in
956         os390) $spitshell >>$Makefile <<'!NO!SUBS!'
957         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(LLIBPERL) $(static_ext) `cat ext.libs` $(libs)
958 !NO!SUBS!
959         ;;
960         *) $spitshell >>$Makefile <<'!NO!SUBS!'
961         $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
962 !NO!SUBS!
963         ;;
964         esac
965
966         $spitshell >>$Makefile <<'!NO!SUBS!'
967
968 # Microperl.  This is just a convenience thing if one happens to
969 # build also the full Perl and therefore the real big Makefile:
970 # usually one should manually explicitly issue the below command.
971
972 .PHONY: microperl
973 microperl:
974         $(MAKE) -f Makefile.micro
975
976 !NO!SUBS!
977
978 fi
979
980 # Some environment have no system(), which mkpport uses.
981 # Let's try running the commands with shell.
982 case "${osname}" in
983 catamount)
984 $spitshell >>$Makefile <<!GROK!THIS!
985 .PHONY: makeppport
986 makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
987         -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
988         (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
989         done
990
991 !GROK!THIS!
992 ;;
993 *)
994 $spitshell >>$Makefile <<'!NO!SUBS!'
995 .PHONY: makeppport
996 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
997         $(MINIPERL) mkppport
998
999 !NO!SUBS!
1000 ;;
1001 esac
1002
1003 $spitshell >>$Makefile <<'!NO!SUBS!'
1004
1005 .PHONY: preplibrary
1006 preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
1007
1008 $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
1009
1010 $(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
1011         $(MINIPERL) configpm
1012
1013 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
1014
1015 uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
1016         $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
1017 #       Commented out so always runs, mktables looks at far more files than we
1018 #       can in this makefile to decide if needs to run or not
1019 #       touch uni.data
1020
1021 # $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
1022 # But also this ensures that all extensions are built before we try to scan
1023 # them, which picks up Devel::PPPort's documentation.
1024 pod/perltoc.pod: $(perltoc_pod_prereqs)  $(PERL_EXE) $(ext) pod/buildtoc
1025         $(RUN_PERL) -f pod/buildtoc -q
1026
1027 pod/perlapi.pod: pod/perlintern.pod
1028
1029 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
1030         $(MINIPERL) autodoc.pl
1031
1032 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1033         $(MINIPERL) pod/perlmodlib.PL -q
1034
1035 pod/perl5233delta.pod: pod/perldelta.pod
1036         $(RMS) pod/perl5233delta.pod
1037         $(LNS) perldelta.pod pod/perl5233delta.pod
1038
1039 extra.pods: $(MINIPERL_EXE)
1040         -@test ! -f extra.pods || rm -f `cat extra.pods`
1041         -@rm -f extra.pods
1042         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1043             nx=`echo $$x | sed -e "s/README\.//"`; \
1044             $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1045             echo "pod/perl"$$nx".pod" >> extra.pods ; \
1046         done
1047
1048 extras.make: $(PERL_EXE)
1049         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1050
1051 extras.test: $(PERL_EXE)
1052         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1053
1054 extras.install: $(PERL_EXE)
1055         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1056
1057 .PHONY: install install-strip install-all install-verbose install-silent \
1058         no-install install.perl install.man install.html
1059
1060 # Set this to an empty string to avoid an attempt of rebuild before install
1061 INSTALL_DEPENDENCE = all
1062
1063 no_install no-install: install-notify
1064
1065 install: install-all
1066 !NO!SUBS!
1067
1068
1069 for name in all notify silent strip verbose; do
1070     flags="--$name";
1071     flags=`echo $flags | sed -e 's/--all//'`
1072     if test "X$hostperl" != X; then
1073         $spitshell >>$Makefile <<EOT
1074
1075 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1076         \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1077         \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1078 EOT
1079     else
1080         $spitshell >>$Makefile <<EOT
1081
1082 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1083         \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1084         \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1085 EOT
1086     fi
1087
1088     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
1089 done
1090
1091 if test "X$hostperl" != X; then
1092         $spitshell >>$Makefile <<'!NO!SUBS!'
1093 install.perl:   $(INSTALL_DEPENDENCE) installperl
1094         $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1095         -@test ! -s extras.lst || $(MAKE) extras.install
1096
1097 install.man:    all installman
1098         $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1099
1100 # XXX Experimental. Hardwired values, but useful for testing.
1101 # Eventually Configure could ask for some of these values.
1102 install.html: all installhtml
1103         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1104         $(HOST_PERL) installhtml   \
1105       --podroot=. --podpath=. --recurse  \
1106       --htmldir=$(privlib)/html   \
1107       --htmlroot=$(privlib)/html  \
1108       --splithead=pod/perlipc     \
1109       --splititem=pod/perlfunc    \
1110       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1111       --verbose
1112 !NO!SUBS!
1113 else
1114         $spitshell >>$Makefile <<'!NO!SUBS!'
1115 install.perl:   $(INSTALL_DEPENDENCE) installperl
1116         $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1117         -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1118
1119 install.man:    all installman
1120         $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1121
1122 # XXX Experimental. Hardwired values, but useful for testing.
1123 # Eventually Configure could ask for some of these values.
1124 install.html: all installhtml
1125         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1126         $(RUN_PERL) installhtml   \
1127       --podroot=. --podpath=. --recurse  \
1128       --htmldir=$(privlib)/html   \
1129       --htmlroot=$(privlib)/html  \
1130       --splithead=pod/perlipc     \
1131       --splititem=pod/perlfunc    \
1132       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1133       --verbose
1134 !NO!SUBS!
1135 fi
1136
1137 $spitshell >>$Makefile <<'!NO!SUBS!'
1138
1139 # I now supply perly.c with the kits, so the following section is
1140 # used only if you force bison to run by saying
1141 #       make regen_perly
1142 # You normally shouldn't remake perly.[ch].
1143
1144 .PHONY: regen_perly
1145
1146 run_byacc run-byacc:
1147         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1148
1149 # this outputs perly.h, perly.act and perly.tab
1150 regen_perly regen-perly:
1151         perl regen_perly.pl
1152
1153 # We don't want to regenerate perly.c and perly.h, but they might
1154 # appear out-of-date after a patch is applied or a new distribution is
1155 # made.
1156 perly.c: perly.y
1157         -@sh -c true
1158
1159 perly.h: perly.y
1160         -@sh -c true
1161
1162 SYM  = globvar.sym perlio.sym
1163
1164 SYMH = perlvars.h intrpvar.h
1165
1166 CHMOD_W = chmod +w
1167
1168 # The following files are generated automatically
1169 #       embed.pl:       proto.h embed.h embedvar.h perlapi.h perlapi.c
1170 #       opcode.pl:      opcode.h opnames.h pp_proto.h
1171 #       regcomp.pl:     regnodes.h
1172 #       warnings.pl:    warnings.h lib/warnings.pm
1173 #       feature.pl:     feature.h lib/feature.pm
1174 # The correct versions should be already supplied with the perl kit,
1175 # in case you don't have perl available.
1176 # To force them to be regenerated, run
1177 #       perl regen.pl
1178 # with your existing copy of perl
1179 # (make regen_headers is kept for backwards compatibility)
1180
1181 AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
1182                 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
1183                 lib/feature.pm feature.h
1184
1185 .PHONY: regen_headers regen_all
1186
1187 regen:  FORCE
1188         -perl regen.pl
1189         -perl regen/uconfig_h.pl
1190
1191 regen_headers regen-headers:    FORCE
1192         -perl regen.pl -v
1193         -perl regen/uconfig_h.pl -v
1194
1195 regen_meta regen-meta:  META.yml META.json
1196
1197 META.yml:   FORCE
1198         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1199
1200 META.json:   FORCE
1201         PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1202
1203
1204 regen_all regen-all: regen regen_meta
1205
1206 .PHONY: manisort manicheck
1207
1208 manisort:       FORCE
1209         @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1210                 perl Porting/manisort -q -o MANIFEST; sh -c true)
1211
1212 manicheck:      FORCE
1213         perl Porting/manicheck
1214
1215 # Extensions:
1216 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1217 # automatically get built.  There should ordinarily be no need to change
1218 # any of this part of makefile.
1219 #
1220 # The dummy dependency is a place holder in case $(dynamic_ext) or
1221 # $(static_ext) is empty.
1222 #
1223 # DynaLoader may be needed for extensions that use Makefile.PL.
1224
1225 $(DYNALOADER):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1226         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1227
1228 d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1229         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1230
1231 s_dummy $(static_ext):  $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1232         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1233
1234 n_dummy $(nonxs_ext):   $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1235         $(MINIPERL) make_ext.pl $@ $(MAKE_EXT_ARGS) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL)
1236 !NO!SUBS!
1237
1238 $spitshell >>$Makefile <<EOF
1239 $extra_dep
1240 EOF
1241
1242 $spitshell >>$Makefile <<'!NO!SUBS!'
1243
1244 .PHONY: printconfig
1245 printconfig:
1246         @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1247
1248 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1249         realclean _realcleaner clobber _clobber \
1250         distclean veryclean _verycleaner
1251
1252 clean:          realclean
1253
1254 realclean:      _realcleaner _mopup
1255         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1256
1257 _clobber:
1258         -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1259         -rm -rf host
1260         rm -f t/test_state
1261         rm -f config.sh cppstdin Policy.sh extras.lst
1262         rm -f $(MANIFEST_SRT)
1263
1264 clobber:        _realcleaner _mopup _clobber
1265
1266 distclean:      clobber
1267
1268 # Like distclean but also removes emacs backups and *.orig.
1269 veryclean:      _verycleaner _mopup _clobber
1270         -@rm -f Obsolete Wanted
1271
1272 # Do not 'make _mopup' directly.
1273 _mopup:
1274         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1275         -rmdir .depending
1276         -@test -f extra.pods && rm -f `cat extra.pods`
1277         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1278         -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1279         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1280         -rm -f *perl.xok
1281         -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1282         -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1283         -rm -f config.arch config.over $(DTRACE_H)
1284
1285 _cleaner1:
1286         -cd os2; rm -f Makefile
1287         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1288         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1289         -@if test -f $(MINIPERL_EXE) ; then \
1290         for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1291         $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE="$(MAKE)" ; \
1292         done ; \
1293         else \
1294         sh $(CLEAN).sh ; \
1295         fi
1296         rm -f realclean.sh veryclean.sh
1297         -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1298
1299 # Dear POSIX, thanks for making the default to xargs to be
1300 # run once if nothhing is passed in. It is such a great help.
1301
1302 # Some systems do not support "?", so keep these files separate.
1303 _cleaner2:
1304         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1305         rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1306         rm -f t/$(PERL_EXE) t/rantests
1307         rm -rf t/tmp*
1308         rm -rf $(addedbyconf)
1309         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1310         rm -f $(private)
1311         rm -rf $(unidatafiles) $(unidatadirs)
1312         rm -rf lib/auto
1313         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1314         rm -f h2ph.man pstruct
1315         rm -rf .config
1316         rm -f preload
1317         rm -f pod2htmd.tmp
1318         rm -rf pod/perlfunc pod/perlipc
1319         -rmdir ext/B/lib
1320         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1321         -rmdir lib/version lib/threads lib/encoding lib/autodie/exception
1322         -rmdir lib/autodie/Scope lib/autodie lib/XS lib/Win32API lib/VMS
1323         -rmdir lib/Unicode/Collate/Locale lib/Unicode/Collate/CJK
1324         -rmdir lib/Unicode/Collate lib/Tie/Hash lib/Thread lib/Text
1325         -rmdir lib/Test/use lib/Test/Tester lib/Test/Builder/Tester
1326         -rmdir lib/Test/Builder/IO lib/Test/Builder lib/Test lib/Term
1327         -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1328         -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1329         -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1330         -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1331         -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Sub
1332         -rmdir lib/Search lib/Scalar lib/Pod/Text lib/Pod/Simple
1333         -rmdir lib/Pod/Perldoc lib/PerlIO/via lib/PerlIO lib/Perl
1334         -rmdir lib/Parse/CPAN lib/Parse lib/Params lib/Net/FTP lib/Module/Load
1335         -rmdir lib/Module/CoreList lib/Module lib/Memoize lib/Math/BigInt
1336         -rmdir lib/Math/BigFloat lib/Math lib/MIME lib/Locale/Maketext
1337         -rmdir lib/Locale/Codes lib/Locale lib/List/Util lib/List lib/JSON/PP
1338         -rmdir lib/JSON lib/IPC lib/IO/Uncompress/Adapter lib/IO/Uncompress
1339         -rmdir lib/IO/Socket lib/IO/Compress/Zlib lib/IO/Compress/Zip
1340         -rmdir lib/IO/Compress/Gzip lib/IO/Compress/Base
1341         -rmdir lib/IO/Compress/Adapter lib/IO/Compress lib/IO
1342         -rmdir lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash lib/HTTP
1343         -rmdir lib/Filter/Util lib/Filter lib/File/Spec lib/ExtUtils/Typemaps
1344         -rmdir lib/ExtUtils/ParseXS lib/ExtUtils/MakeMaker/version
1345         -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1346         -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1347         -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1348         -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1349         -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1350         -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1351         -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1352         -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Plugin
1353         -rmdir lib/CPAN/Meta/History lib/CPAN/Meta lib/CPAN/LWP
1354         -rmdir lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP lib/CPAN/Exception
1355         -rmdir lib/CPAN/API lib/CPAN lib/Attribute lib/Archive/Tar lib/Archive
1356         -rmdir lib/App/Prove/State/Result lib/App/Prove/State lib/App/Prove
1357         -rmdir lib/App lib/Amiga
1358
1359 _realcleaner:
1360         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1361         @$(LDLIBPTH) $(MAKE) _cleaner2
1362
1363 _verycleaner:
1364         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1365         @$(LDLIBPTH) $(MAKE) _cleaner2
1366         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1367
1368 .PHONY: lint
1369 lint: $(c)
1370         rm -f *.ln
1371         lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1372
1373 .PHONY: splint
1374 splint: $(c)
1375         splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1376
1377 # Need to unset during recursion to go out of loop.
1378 # The README below ensures that the dependency list is never empty and
1379 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1380
1381 MAKEDEPEND = Makefile makedepend
1382
1383 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1384         $(MAKE) depend MAKEDEPEND=
1385 !NO!SUBS!
1386
1387 for f in $SH; do
1388     file=`SH_to_target $f`
1389     $spitshell >>$Makefile <<!GROK!THIS!
1390
1391 $file: $f config.sh
1392         \$(SHELL) $f
1393 !GROK!THIS!
1394 done
1395
1396 $spitshell >>$Makefile <<'!NO!SUBS!'
1397
1398 .PHONY: depend
1399 depend: makedepend $(DTRACE_H) $(generated_headers)
1400         sh ./makedepend MAKE="$(MAKE)" cflags
1401
1402 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1403         test_prep_reonly test_tty test-tty test_notty test-notty \
1404         test_harness test_harness_notty minitest test-reonly _test
1405
1406 _test:
1407         echo >&2 The _test target is deprecated. Please upgrade your smoker
1408         $(RUN_TESTS) choose
1409
1410 # Cannot delegate rebuilding of t/perl to make
1411 # to allow interlaced test and minitest
1412
1413 # Architecture-neutral stuff:
1414
1415 test_prep_pre: preplibrary utilities $(nonxs_ext)
1416 !NO!SUBS!
1417
1418 case "$targethost" in
1419 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1420 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1421         $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods)
1422         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1423
1424 !NO!SUBS!
1425 ;;
1426 *) $spitshell >>$Makefile <<!GROK!THIS!
1427 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1428         \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1429         \$(generated_pods)
1430         $to libperl.*
1431         $to t/*
1432         $to lib/*
1433         $to TestInit.pm
1434         $to win32/FindExt.pm
1435         $to regen/*
1436         $to pod/*
1437         $to MANIFEST
1438         $to Porting/*
1439         $to cpan/*/t
1440         $to dist/*/t
1441         $to ext/*/t
1442         $to cpan/Archive-Tar/*
1443         $to cpan/Module-Metadata/*
1444         $to cpan/Term-Cap/test.pl
1445         $to cpan/Pod-Usage/*
1446         $to cpan/Pod-Parser/*
1447         $to cpan/IO-Compress/*
1448         $to cpan/HTTP-Tiny/lib/*
1449         $to cpan/Filter-Util-Call/filter-util.pl
1450         $to cpan/Digest-MD5/*
1451         $to cpan/Digest-SHA/*
1452         $to cpan/Test-Simple/*
1453         $to cpan/Pod-Parser/lib/*
1454         $to cpan/Test-Harness/*
1455         $to cpan/Scalar-List-Utils/*
1456         $to ext/IPC-Open3/*
1457         $to ext/Tie-Memoize/*
1458         $to ext/POSIX/*
1459         $to dist/IO/*
1460 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1461         $to config_h.SH
1462         $to perl.h
1463         $to cflags
1464         $to *.h
1465 # --- For t/porting/customized.t
1466         $to vutil.c
1467         $to vxs.inc
1468 # --- For t/TEST
1469         $to config.sh
1470 # --- For lib/diagnostics.t with -Duseshrplib
1471         $to \$(PERL_EXE)
1472         cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1473         $to t/\$(PERL_EXE)
1474
1475 !GROK!THIS!
1476 ;;
1477 esac
1478
1479 $spitshell >>$Makefile <<'!NO!SUBS!'
1480 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1481         $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1482         cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1483 !NO!SUBS!
1484
1485 case "$targethost" in
1486 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1487
1488 test check: test_prep
1489         $(RUN_TESTS) choose
1490
1491 !NO!SUBS!
1492 ;;
1493 *) $spitshell >>$Makefile <<!GROK!THIS!
1494
1495 test check: test_prep
1496         $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1497
1498 !GROK!THIS!
1499 ;;
1500 esac
1501
1502 $spitshell >>$Makefile <<'!NO!SUBS!'
1503 test_tty test-tty: test_prep
1504         $(RUN_TESTS) tty
1505
1506 test_notty test-notty: test_prep
1507         $(RUN_TESTS) no-tty
1508
1509 !NO!SUBS!
1510
1511 case "${osname}${osvers}" in
1512 linux*|darwin*)
1513         $spitshell >>$Makefile <<'!NO!SUBS!'
1514 # Targets for valgrind testing:
1515
1516 test.valgrind check.valgrind:   test_prep
1517         @echo "Checking usemymalloc='n' in config.sh..."
1518         @grep "^usemymalloc="    config.sh
1519         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1520         @echo "And of course you have to have valgrind..."
1521         $(VALGRIND) $(VG_TEST) || exit 1
1522         PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1523 !NO!SUBS!
1524         ;;
1525 esac
1526
1527 $spitshell >>$Makefile <<'!NO!SUBS!'
1528
1529 # minitest can't depend on lib/Config.pm because that might be where miniperl
1530 # is crashing.
1531 minitest_prep:
1532         -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1533         @echo " "
1534         @echo "You may see some irrelevant test failures if you have been unable"
1535         @echo "to build lib/Config.pm, or the Unicode data files."
1536         @echo " "
1537         - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE))
1538
1539 MINITEST_TESTS = base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t
1540
1541 minitest: $(MINIPERL_EXE) minitest_prep
1542         - cd t && $(RUN_PERL) TEST $(MINITEST_TESTS) <$(devtty)
1543
1544 minitest-notty minitest_notty: $(MINIPERL_EXE) minitest_prep
1545         - cd t && PERL_SKIP_TTY_TEST=1 $(RUN_PERL) TEST $(MINITEST_TESTS)
1546
1547 # Test via harness
1548
1549 test_harness test-harness: test_prep
1550         TESTFILE=harness $(RUN_TESTS) choose
1551
1552 test_harness_notty: test_prep
1553         HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1554
1555 test_reonly test-reonly: test_prep_reonly
1556         TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1557
1558
1559 # Porting tests (well-formedness of pod, manifest, etc)
1560
1561 test_porting test-porting: test_prep
1562         cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1563
1564 # Handy way to run perlbug -ok without having to install and run the
1565 # installed perlbug. We don't re-run the tests here - we trust the user.
1566 # Please *don't* use this unless all tests pass.
1567 # If you want to report test failures, use "make nok" instead.
1568
1569 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1570
1571 ok:     utilities
1572         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1573
1574 okfile: utilities
1575         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1576
1577 oknack: utilities
1578         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1579
1580 okfilenack:     utilities
1581         $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1582
1583 nok:    utilities
1584         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1585
1586 nokfile:        utilities
1587         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1588
1589 noknack:        utilities
1590         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1591
1592 nokfilenack:    utilities
1593         $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1594
1595 .PHONY: clist hlist
1596
1597 clist:  $(c)
1598         echo $(c) | tr ' ' $(TRNL) >.clist
1599
1600 hlist:  $(h)
1601         echo $(h) | tr ' ' $(TRNL) >.hlist
1602
1603 .PHONY: distcheck
1604 distcheck: FORCE
1605         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1606
1607 .PHONY: ctags
1608
1609 ctags:
1610         ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1611
1612 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1613 # If this runs make out of memory, delete /usr/include lines.
1614 !NO!SUBS!
1615
1616 $eunicefix Makefile
1617 $rm -f $firstmakefile
1618
1619 # Now do any special processing required before building.
1620
1621 case "$ebcdic" in
1622 define)
1623     xxx=''
1624     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1625 case "$osname" in
1626 os390|posix-bc)
1627     ;;
1628 *)
1629     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1630     ;;
1631 esac
1632     case "$xxx" in
1633     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1634     esac
1635     ;;
1636 esac
1637
1638 # ex: set ts=8 sts=4 sw=4 noet: