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