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