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