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