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