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