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