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