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