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