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