Add a perlmini.o and perlmini.c akin to opmini.o and opmini.c, for ./miniperl
[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) make_patchnum 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 make_patchnum
545
546 make_patchnum: miniperl$(EXE_EXT)
547         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_patchnum.pl || $(MAKE) miniperl
548
549 git_version.h: stock_git_version.h
550         cp stock_git_version.h git_version.h
551
552 # make sure that we recompile perl.c if the git version changes
553 perl$(OBJ_EXT): git_version.h
554
555 translators:    miniperl$(EXE_EXT) $(CONFIGPM) FORCE
556         @echo " "; echo "       Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
557
558 utilities:      miniperl$(EXE_EXT) $(CONFIGPM) $(plextract) lib/lib.pm FORCE
559         @echo " "; echo "       Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
560
561
562 # This is now done by installman only if you actually want the man pages.
563 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
564
565 # Phony target to force checking subdirectories.
566 # Apparently some makes require an action for the FORCE target.
567 .PHONY: FORCE
568 FORCE:
569         @sh -c true
570 !NO!SUBS!
571 $spitshell >>$Makefile <<!GROK!THIS!
572
573 # We do a copy of the op.c instead of a symlink because gcc gets huffy
574 # if we have a symlink forest to another disk (it complains about too many
575 # levels of symbolic links, even if we have only two)
576
577 opmini.c: op.c
578         \$(RMS) opmini.c
579         \$(CPS) op.c opmini.c
580
581 opmini\$(OBJ_EXT): opmini.c
582         \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
583
584 perlmini.c: perl.c
585         \$(RMS) perlmini.c
586         \$(CPS) perl.c perlmini.c
587
588 perlmini\$(OBJ_EXT): perlmini.c
589         \$(CCCMD) \$(PLDLFLAGS) $DPERL_IS_MINIPERL perlmini.c
590
591 globals\$(OBJ_EXT): uudmap.h
592
593 uudmap.h: generate_uudmap\$(HOST_EXE_EXT)
594         \$(RUN) ./generate_uudmap\$(HOST_EXE_EXT) >uudmap.h
595
596 generate_uudmap\$(HOST_EXE_EXT): generate_uudmap\$(OBJ_EXT)
597         \$(CC) -o generate_uudmap\$(EXE_EXT) \$(LDFLAGS) generate_uudmap\$(OBJ_EXT) \$(libs)
598
599 !GROK!THIS!
600 $spitshell >>$Makefile <<'!NO!SUBS!'
601 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
602         $(CCCMD) $(PLDLFLAGS) $*.c
603
604 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
605         sh writemain $(DYNALOADER) $(static_ext) > perlmain.c
606
607 perlmain$(OBJ_EXT): perlmain.c git_version.h
608         $(CCCMD) $(PLDLFLAGS) $*.c
609
610 # The file ext.libs is a list of libraries that must be linked in
611 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
612 # static extension Makefile's add to it.
613 ext.libs: $(static_ext)
614         -@test -f ext.libs || touch ext.libs
615
616 !NO!SUBS!
617
618 # How to build libperl.  This is still rather convoluted.
619 # Load up custom Makefile.SH fragment for shared loading and executables:
620 case "$osname" in
621 *)
622         Makefile_s="$osname/Makefile.SHs"
623         ;;
624 esac
625
626 case "$osname" in
627 aix)
628         $spitshell >>$Makefile <<!GROK!THIS!
629 LIBS                    = $perllibs
630 # In AIX we need to change this for building Perl itself from
631 # its earlier definition (which is for building external
632 # extensions *after* Perl has been built and installed)
633 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
634
635 !GROK!THIS!
636         case "$useshrplib" in
637         define|true|[yY]*)
638                 $spitshell >>$Makefile <<'!NO!SUBS!'
639
640 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
641 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
642
643 $(LIBPERL_NONSHR): $(obj)
644         $(RMS) $(LIBPERL_NONSHR)
645         $(AR) rcu $(LIBPERL_NONSHR) $(obj)
646
647 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)  perlmini$(OBJ_EXT)
648         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
649             opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
650
651 MINIPERLEXP             = $(MINIPERL_NONSHR)
652
653 LIBPERLEXPORT           = perl.exp
654
655 !NO!SUBS!
656                 
657                 ;;
658         *)      
659                 $spitshell >>$Makefile <<'!NO!SUBS!'
660 MINIPERLEXP             = miniperl$(EXE_EXT)
661
662 PERLEXPORT              = perl.exp
663
664 !NO!SUBS!
665         ;;
666         esac
667         $spitshell >>$Makefile <<'!NO!SUBS!'
668 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
669         ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp
670
671 !NO!SUBS!
672         ;;
673 os2)
674         $spitshell >>$Makefile <<'!NO!SUBS!'
675 MINIPERLEXP             = miniperl
676
677 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
678         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
679
680 !NO!SUBS!
681         ;;
682 cygwin)
683         $spitshell >>$Makefile <<'!NO!SUBS!'
684 cygwin.c: cygwin/cygwin.c
685         $(LNS) cygwin/cygwin.c
686
687 LIBPERL_NONSHR          = libperl$(LIB_EXT)
688
689 $(LIBPERL_NONSHR): $(obj)
690         $(RMS) $(LIBPERL_NONSHR)
691         $(AR) rcu $(LIBPERL_NONSHR) $(obj)
692
693 !NO!SUBS!
694         ;;
695 esac
696
697 if test -s $Makefile_s ; then
698         . $Makefile_s
699         $spitshell >>$Makefile <<!GROK!THIS!
700
701 Makefile: $Makefile_s
702 !GROK!THIS!
703 else
704         case "$dtrace_h" in
705         ?*)
706                 $spitshell >>$Makefile <<'!NO!SUBS!'
707 $(DTRACE_H): perldtrace.d
708         $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H)
709
710 mydtrace.h: $(DTRACE_H)
711
712 !NO!SUBS!
713                 ;;
714         esac
715         case "$dtrace_o" in
716         ?*)
717                 $spitshell >>$Makefile <<'!NO!SUBS!'
718 $(DTRACE_O): perldtrace.d
719         $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
720
721 !NO!SUBS!
722                 ;;
723     esac
724         $spitshell >>$Makefile <<'!NO!SUBS!'
725 $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
726 !NO!SUBS!
727         case "$useshrplib" in
728         true)
729                 $spitshell >>$Makefile <<'!NO!SUBS!'
730         rm -f $@
731         $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
732 !NO!SUBS!
733                 case "$osname" in
734                 aix)
735                         $spitshell >>$Makefile <<'!NO!SUBS!'
736         rm -f libperl$(OBJ_EXT)
737         mv $@ libperl$(OBJ_EXT)
738         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
739 !NO!SUBS!
740                         ;;
741                 esac
742                 ;;
743         *)
744                 $spitshell >>$Makefile <<'!NO!SUBS!'
745         rm -f $(LIBPERL)
746         $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
747         @$(ranlib) $(LIBPERL)
748 !NO!SUBS!
749                 ;;
750         esac
751         $spitshell >>$Makefile <<'!NO!SUBS!'
752
753 # How to build executables.
754
755 # The $& notation tells Sequent machines that it can do a parallel make,
756 # and is harmless otherwise.
757 # The miniperl -w -MExporter line is a basic cheap test to catch errors
758 # before make goes on to run preplibrary and then MakeMaker on extensions.
759 # This is very handy because later errors are often caused by miniperl
760 # build problems but that's not obvious to the novice.
761 # The Module used here must not depend on Config or any extensions.
762
763 !NO!SUBS!
764
765         case "${osname}${osvers}" in
766         aix*|beos*)
767                 $spitshell >>$Makefile <<'!NO!SUBS!'
768 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
769         $(CC) -o miniperl$(EXE_EXT) $(CLDFLAGS) \
770             $(mini_obj) \
771             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
772         $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
773 !NO!SUBS!
774                 ;;
775         next4*)
776                 $spitshell >>$Makefile <<'!NO!SUBS!'
777 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) perlmini$(OBJ_EXT) opmini$(OBJ_EXT)
778         $(CC) -o miniperl$(EXE_EXT) $(mini_obj) \
779             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
780         $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
781 !NO!SUBS!
782                 ;;
783         darwin*)
784                 case "$osvers" in
785                 [1-6].*) ;;
786                 *) case "$ldflags" in
787                     *"-flat_namespace"*) ;;
788                     *) # to allow opmini.o to override stuff in libperl.dylib
789                 $spitshell >>$Makefile <<!NO!SUBS!
790 NAMESPACEFLAGS = -force_flat_namespace
791 !NO!SUBS!
792                        ;;
793                     esac
794                     ;;
795                 esac
796                 $spitshell >>$Makefile <<'!NO!SUBS!'
797 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
798         -@rm -f miniperl.xok
799         $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl$(EXE_EXT) \
800             $(mini_obj) \
801             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
802         $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
803 !NO!SUBS!
804                 ;;
805         *)
806                 $spitshell >>$Makefile <<'!NO!SUBS!'
807 miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(mini_obj) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
808         -@rm -f miniperl.xok
809         $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl$(EXE_EXT) \
810             $(mini_obj) \
811             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs)
812         $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
813 !NO!SUBS!
814                 ;;
815         esac
816
817         $spitshell >>$Makefile <<'!NO!SUBS!'
818
819 perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) make_patchnum
820         -@rm -f miniperl.xok
821         $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
822
823 # Purify/Quantify Perls.
824
825 pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
826         $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
827
828 purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
829         $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
830
831 quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
832         $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
833
834 # Valgrind perl (currently Linux only)
835
836 perl.valgrind.config: config.sh
837         @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
838         @$(MAKE) perl.config.dashg
839         @echo "Checking usemymalloc='n' in config.sh..."
840         @grep "^usemymalloc="    config.sh
841         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
842         @echo "And of course you have to have valgrind..."
843         $(VALGRIND) ./perl -e 1 2>/dev/null || exit 1
844
845 # Third Degree Perl (Tru64 only)
846
847 perl.config.dashg:
848         @echo "Checking optimize='-g' in config.sh..."
849         @grep "^optimize=" config.sh
850         @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1
851
852 perl.third.config: config.sh
853         @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
854         @$(MAKE) perl.config.dashg
855         @echo "Checking usemymalloc='n' in config.sh..."
856         @grep "^usemymalloc="    config.sh
857         @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
858
859 perl.third: /usr/bin/atom perl.third.config perl
860         atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
861         @echo "Now you may run perl.third and then study perl.3log."
862
863 # Pixie Perls (Tru64 and IRIX only)
864
865 perl.pixie.config: config.sh
866         @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
867         @$(MAKE) perl.config.dashg
868
869 perl.pixie.atom: /usr/bin/atom perl
870         atom -tool pixie -L. -all -toolargs="-quiet" perl
871
872 perl.pixie.irix: perl
873         pixie perl
874
875 perl.pixie: /usr/bin/pixie perl.pixie.config perl
876         if test -x /usr/bin/atom; then \
877           $(MAKE) perl.pixie.atom; \
878         else \
879           $(MAKE) perl.pixie.irix; \
880         fi
881         @echo "Now you may run perl.pixie and then run pixie."
882
883 # Gprof Perl
884
885 perl.config.dashpg:
886         @echo "Checking optimize='-pg' in config.sh..."
887         @grep "^optimize="      config.sh
888         @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
889
890 perl.gprof.config: config.sh
891         @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
892         @$(MAKE) perl.config.dashpg
893
894 perl.gprof: /usr/bin/gprof perl.gprof.config
895         @-rm -f perl
896         $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
897         @echo "Now you may run perl.gprof and then run gprof perl.gprof."
898
899 # Gcov Perl
900
901 perl.config.gcov:
902         @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
903         @echo "Checking gccversion in config.sh..."
904         @grep "^gccversion="      config.sh
905         @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
906         @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
907         @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
908         @grep "^ccflags="      config.sh
909         @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
910
911 perl.gcov: perl.config.gcov
912         @-rm -f perl
913         $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
914         @echo "Now you may run perl.gcov and then run gcov some.c."
915
916 # Microperl.  This is just a convenience thing if one happens to
917 # build also the full Perl and therefore the real big Makefile:
918 # usually one should manually explicitly issue the below command.
919
920 .PHONY: microperl
921 microperl:
922         $(MAKE) -f Makefile.micro
923
924 # This version, if specified in Configure, does ONLY those scripts which need
925 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
926 # checks as well as the special code to validate that the script in question
927 # has been invoked correctly.
928
929 !NO!SUBS!
930
931 case "${osname}" in
932 aix*)
933 $spitshell >>Makefile <<'!NO!SUBS!'
934 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
935         $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(static_ext) $(LLIBPERL_NONSHR) $(LLIBPERL) `cat ext.libs` $(libs)
936
937 !NO!SUBS!
938 ;;
939 *)
940 $spitshell >>Makefile <<'!NO!SUBS!'
941 suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT)
942         $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
943
944 !NO!SUBS!
945 ;;
946 esac
947
948 fi
949
950 # Some environment have no system(), which mkpport uses.
951 # Let's try running the commands with shell.
952 case "${osname}" in
953 catamount)
954 $spitshell >>$Makefile <<!GROK!THIS!
955 .PHONY: makeppport
956 makeppport: miniperl\$(EXE_EXT) \$(CONFIGPM)
957         -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
958         (cd ext/Devel/PPPort && `pwd`/run.sh ../../../miniperl$(EXE_EXT) -I../../../lib \$\$f); \
959         done
960
961 !GROK!THIS!
962 ;;
963 *)
964 $spitshell >>$Makefile <<'!NO!SUBS!'
965 .PHONY: makeppport
966 makeppport: miniperl$(EXE_EXT) $(CONFIGPM)
967         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport
968
969 !NO!SUBS!
970 ;;
971 esac
972
973 $spitshell >>$Makefile <<'!NO!SUBS!'
974
975 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
976 #       test -d lib/auto || mkdir lib/auto
977 # We need to autosplit in two steps because VOS can't handle so many args
978 #
979 .PHONY: preplibrary
980 preplibrary: miniperl$(EXE_EXT) $(CONFIGPM) lib/lib.pm $(PREPLIBRARY_LIBPERL)
981         @sh ./makedir lib/auto
982         @echo " AutoSplitting perl library"
983         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib -MAutoSplit -MFile::Find -e 'find ({no_chdir=>1, wanted => sub {autosplit_lib_modules($$_) if /\.pm$$/}}, "lib")'
984         $(MAKE) lib/re.pm
985
986 $(CONFIGPOD): config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
987         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib configpm
988
989 $(CONFIGPM): $(CONFIGPOD)
990
991 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl $(CONFIGPM)
992         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) minimod.pl > lib/ExtUtils/Miniperl.pm
993
994 lib/re.pm: ext/re/re.pm
995         @-rm -f $@
996         cp ext/re/re.pm lib/re.pm
997
998 $(plextract):   miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p
999         @-rm -f $@
1000         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -I`pwd`/lib $@.PL
1001
1002 x2p/s2p: miniperl$(EXE_EXT) $(CONFIGPM) x2p/s2p.PL
1003         cd x2p; $(LDLIBPTH) $(MAKE) s2p
1004
1005 lib/lib.pm:     miniperl$(EXE_EXT) $(CONFIGPM)
1006         @-rm -f $@
1007         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib lib/lib_pm.PL
1008
1009 unidatafiles $(unidatafiles): uni.data
1010
1011 uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables
1012         cd lib/unicore && $(LDLIBPTH) $(RUN) ../../miniperl$(EXE_EXT) -I../../lib mktables -w
1013         touch uni.data
1014
1015 extra.pods: miniperl$(EXE_EXT)
1016         -@test ! -f extra.pods || rm -f `cat extra.pods`
1017         -@rm -f extra.pods
1018         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1019             nx=`echo $$x | sed -e "s/README\.//"`; \
1020             cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
1021             echo "pod/perl"$$nx".pod" >> extra.pods ; \
1022         done
1023         -@rm -f pod/perlvms.pod
1024         -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
1025         -@rm -f pod/perldelta.pod
1026         -@test -f pod/perl5110delta.pod && cd pod && $(LNS) perl5110delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
1027
1028 extras.make: perl$(EXE_EXT)
1029         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1030
1031 extras.test: perl$(EXE_EXT)
1032         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1033
1034 extras.install: perl$(EXE_EXT)
1035         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) $(RUN) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1036
1037 .PHONY: install install-strip install-all install-verbose install-silent \
1038         no-install install.perl install.man install.html
1039
1040 META.yml:       Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
1041         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib Porting/makemeta
1042
1043 install-strip:
1044         $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
1045
1046 install install-all:
1047         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
1048
1049 install-verbose:
1050         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
1051
1052 install-silent:
1053         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
1054
1055 no-install:
1056         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
1057
1058 # Set this to an empty string to avoid an attempt of rebuild before install
1059 INSTALL_DEPENDENCE = all
1060
1061 install.perl:   $(INSTALL_DEPENDENCE) installperl
1062         $(LDLIBPTH) $(RUN) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1063         -@test ! -s extras.lst || $(MAKE) extras.install
1064
1065 install.man:    all installman
1066         $(LDLIBPTH) $(RUN) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1067
1068 # XXX Experimental. Hardwired values, but useful for testing.
1069 # Eventually Configure could ask for some of these values.
1070 install.html: all installhtml
1071         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1072         $(LDLIBPTH) $(RUN) ./perl installhtml   \
1073       --podroot=. --podpath=. --recurse  \
1074       --htmldir=$(privlib)/html   \
1075       --htmlroot=$(privlib)/html  \
1076       --splithead=pod/perlipc     \
1077       --splititem=pod/perlfunc    \
1078       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
1079       --ignore=Porting/Maintainers.pm,Porting/patching.pod,Porting/pumpkin.pod,Porting/repository.pod \
1080       --verbose
1081
1082
1083 # I now supply perly.c with the kits, so the following section is
1084 # used only if you force bison to run by saying
1085 #       make regen_perly
1086 # You normally shouldn't remake perly.[ch].
1087
1088 .PHONY: regen_perly
1089
1090 run_byacc:
1091         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1092
1093 # this outputs perly.h, perly.act and perly.tab
1094 regen_perly:
1095         perl regen_perly.pl
1096
1097 # We don't want to regenerate perly.c and perly.h, but they might
1098 # appear out-of-date after a patch is applied or a new distribution is
1099 # made.
1100 perly.c: perly.y
1101         -@sh -c true
1102
1103 perly.h: perly.y
1104         -@sh -c true
1105
1106 # No compat3.sym here since and including the 5.004_50.
1107 # No interp.sym since 5.005_03.
1108 SYM  = global.sym globvar.sym perlio.sym pp.sym
1109
1110 SYMH = perlvars.h intrpvar.h
1111
1112 CHMOD_W = chmod +w
1113
1114 # The following files are generated automatically
1115 #       autodoc.pl:     pod/perlapi.pod pod/perlintern.pod
1116 #       embed.pl:       proto.h embed.h embedvar.h global.sym
1117 #                       perlapi.h perlapi.c 
1118 # [* embed.pl needs pp.sym generated by opcode.pl! *]
1119 #       keywords.pl:    keywords.h
1120 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
1121 #       regcomp.pl:     regnodes.h
1122 #       warnings.pl:    warnings.h lib/warnings.pm
1123 # The correct versions should be already supplied with the perl kit,
1124 # in case you don't have perl available.
1125 # To force them to be regenerated, run
1126 #       perl regen.pl
1127 # with your existing copy of perl
1128 # (make regen_headers is kept for backwards compatibility)
1129
1130 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
1131                 embed.h embedvar.h global.sym \
1132                 pod/perlintern.pod pod/perlapi.pod \
1133                 perlapi.h perlapi.c regnodes.h \
1134                 warnings.h lib/warnings.pm
1135
1136 .PHONY: regen_headers regen_pods regen_all
1137
1138 regen:  FORCE
1139         -perl regen.pl
1140
1141 regen_headers:  FORCE
1142         -perl regen.pl -v
1143
1144 regen_pods:     FORCE
1145         -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
1146
1147 regen_all: regen regen_pods
1148
1149 .PHONY: manisort manicheck
1150
1151 manisort:       FORCE
1152         LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
1153                 LC_ALL=C sort -fdo MANIFEST MANIFEST)
1154
1155 manicheck:      FORCE
1156         perl Porting/manicheck
1157
1158 # Extensions:
1159 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1160 # automatically get built.  There should ordinarily be no need to change
1161 # any of this part of makefile.
1162 #
1163 # The dummy dependency is a place holder in case $(dynamic_ext) or
1164 # $(static_ext) is empty.
1165 #
1166 # DynaLoader may be needed for extensions that use Makefile.PL.
1167
1168 $(DYNALOADER):  miniperl$(EXE_EXT) preplibrary FORCE
1169         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1170
1171 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
1172         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1173
1174 s_dummy $(static_ext):  miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
1175         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1176
1177 n_dummy $(nonxs_ext):   miniperl$(EXE_EXT) preplibrary FORCE
1178         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1179 !NO!SUBS!
1180
1181 $spitshell >>$Makefile <<EOF
1182 $extra_dep
1183 EOF
1184
1185 $spitshell >>$Makefile <<'!NO!SUBS!'
1186
1187 .PHONY: printconfig
1188 printconfig:
1189         @eval `$(LDLIBPTH) $(RUN) ./perl -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1190
1191 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1192         realclean _realcleaner clobber _clobber \
1193         distclean veryclean _verycleaner \
1194         cleanup_unpacked_files unpack_files
1195
1196 clean:          cleanup_unpacked_files _tidy _mopup 
1197
1198 realclean:      cleanup_unpacked_files _realcleaner _mopup
1199         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1200
1201 _clobber:
1202         -@rm -f Cross/run-* Cross/to-* Cross/from-*
1203         rm -f t/test_state
1204         rm -f config.sh cppstdin Policy.sh extras.lst
1205
1206 clobber:        cleanup_unpacked_files _realcleaner _mopup _clobber
1207
1208 distclean:      clobber
1209
1210 # Like distclean but also removes emacs backups and *.orig.
1211 veryclean:      cleanup_unpacked_files _verycleaner _mopup _clobber
1212         -@rm -f Obsolete Wanted
1213
1214 # Do not 'make _mopup' directly.
1215 _mopup:
1216         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c uudmap.h generate_uudmap$(EXE_EXT)
1217         -rmdir .depending
1218         -@test -f extra.pods && rm -f `cat extra.pods`
1219         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1220         -rm -f perl.exp ext.libs extra.pods uni.data opmini.o perlmini.o
1221         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1222         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
1223         -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
1224         -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
1225         -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
1226         -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1227         -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
1228         -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
1229         -rm -f config.arch config.over $(DTRACE_H)
1230
1231 # Do not 'make _tidy' directly.
1232 _tidy:
1233         -cd pod; $(LDLIBPTH) $(MAKE) clean
1234         -cd utils; $(LDLIBPTH) $(MAKE) clean
1235         -cd x2p; $(LDLIBPTH) $(MAKE) clean
1236         -rm -f lib/Config_git.pl git_version.h
1237         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1238         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl clean $$x MAKE=$(MAKE) ; \
1239         done
1240
1241 _cleaner1:
1242         -cd os2; rm -f Makefile
1243         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1244         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1245         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
1246         -@if test -f miniperl$(EXE_EXT) ; then \
1247         for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1248         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib ext/util/make_ext.pl $(CLEAN) $$x MAKE=$(MAKE) ; \
1249         done ; \
1250         else \
1251         sh $(CLEAN).sh ; \
1252         fi
1253         rm -f realclean.sh veryclean.sh
1254         -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib mkppport --clean
1255
1256 # Some systems do not support "?", so keep these files separate.
1257 _cleaner2:
1258         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1259         rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1260         rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1261         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1262         rm -rf $(addedbyconf)
1263         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1264         rm -f $(private)
1265         rm -rf $(unidatafiles) $(unidatadirs)
1266         rm -rf lib/auto
1267         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1268         rm -f h2ph.man pstruct
1269         rm -rf .config
1270         rm -f preload lib/re.pm
1271         rm -rf lib/Encode lib/Compress lib/Hash lib/re
1272         rm -rf lib/TAP lib/Module/Pluggable lib/App
1273         rm -rf lib/mro
1274         rm -rf lib/IO/Compress lib/IO/Uncompress
1275         rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1276         rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1277         rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1278         rm -fr lib/B
1279         -rmdir lib/Data
1280         -rmdir lib/Filter/Util lib/IO/Socket
1281         -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1282         -rmdir lib/threads lib/XS
1283         -rmdir lib/CPANPLUS/Dist/Build/t/dummy-*
1284         -rmdir lib/CPANPLUS/t/dummy-cpanplus lib/CPANPLUS/t/dummy-localmirror
1285         -rm -f lib/ExtUtils/CBuilder/t/libcompilet.dll.a
1286         -rm -f lib/ExtUtils/ParseXS/t/libXSTest.dll.a
1287
1288 _realcleaner:
1289         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1290         @$(LDLIBPTH) $(MAKE) _cleaner2
1291
1292 _verycleaner:
1293         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1294         @$(LDLIBPTH) $(MAKE) _cleaner2
1295         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1296
1297 .PHONY: lint
1298 lint: $(c)
1299         rm -f *.ln
1300         lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1301
1302 .PHONY: splint
1303 splint: $(c)
1304         splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1305
1306 # Need to unset during recursion to go out of loop.
1307 # The README below ensures that the dependency list is never empty and
1308 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1309
1310 MAKEDEPEND = Makefile makedepend
1311
1312 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1313         $(MAKE) depend MAKEDEPEND=
1314
1315 config.h: config_h.SH config.sh
1316         $(SHELL) config_h.SH
1317
1318 # When done, touch perlmain.c so that it doesn't get remade each time.
1319 .PHONY: depend
1320 depend: makedepend
1321         sh ./makedepend MAKE=$(MAKE)
1322         - test -s perlmain.c && touch perlmain.c
1323         cd x2p; $(MAKE) depend
1324
1325 # Cannot postpone this until $firstmakefile is ready ;-)
1326 makedepend: makedepend.SH config.sh
1327         sh ./makedepend.SH
1328
1329 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1330         test_tty test-tty _test_tty test_notty test-notty _test_notty \
1331         utest ucheck test.utf8 check.utf8 test.torture torturetest \
1332         test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
1333         test.third check.third utest.third ucheck.third test_notty.third \
1334         test.deparse test_notty.deparse test_harness test_harness_notty \
1335         minitest coretest test.taintwarn test-reonly
1336
1337 # Cannot delegate rebuilding of t/perl to make
1338 # to allow interlaced test and minitest
1339
1340 TESTFILE=TEST
1341
1342 _test_prep: unpack_files
1343         cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1344
1345 # Architecture-neutral stuff:
1346
1347 test_prep_pre: preplibrary utilities $(nonxs_ext)
1348
1349 test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1350         PERL=./perl $(MAKE) _test_prep
1351
1352 _test_tty:
1353         cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) $(TEST_FILES) </dev/tty
1354
1355 _test_notty:
1356         cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) $(TEST_FILES)
1357
1358 unpack_files:
1359         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -u -m
1360
1361 cleanup_unpacked_files:
1362         -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib uupacktool.pl -c
1363
1364 # The second branch is for testing without a tty or controlling terminal,
1365 # see t/op/stat.t
1366 _test:
1367         if (true </dev/tty) >/dev/null 2>&1; then \
1368           $(MAKE) TEST_ARGS='$(TEST_ARGS)' TESTFILE=$(TESTFILE) _test_tty   ; \
1369         else \
1370           $(MAKE) TEST_ARGS='$(TEST_ARGS)' TESTFILE=$(TESTFILE) _test_notty ; \
1371         fi
1372         @echo "Ran tests" > t/rantests
1373
1374 test check: test_prep
1375         PERL=./perl $(MAKE) _test
1376
1377 test_tty: test_prep
1378         PERL=./perl $(MAKE) _test_tty
1379
1380 test_notty: test_prep
1381         PERL=./perl $(MAKE) _test_notty
1382
1383 utest ucheck test.utf8 check.utf8: test_prep
1384         PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1385
1386 coretest: test_prep
1387         PERL=./perl TEST_ARGS=-core $(MAKE) _test
1388
1389 test-prep:      test_prep
1390
1391 test-tty:       test_tty
1392
1393 test-notty:     test_notty
1394
1395 # Torture testing
1396
1397 test.torture torturetest:       test_prep
1398         PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1399
1400 # Targets for UTF16 testing:
1401
1402 minitest.utf16: minitest.prep
1403         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1404                 && $(LDLIBPTH) $(RUN) ./perl TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t mro/*.t </dev/tty
1405
1406 test.utf16 check.utf16: test_prep
1407         PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1408
1409 utest.utf16 ucheck.utf16: test_prep
1410         PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1411
1412 # Targets for valgrind testing:
1413
1414 test_prep.valgrind: test_prep perl.valgrind
1415         PERL=./perl $(MAKE) _test_prep
1416
1417 test.valgrind check.valgrind:   test_prep perl.valgrind.config
1418         PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(MAKE) _test
1419
1420 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config
1421         PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1422
1423 test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1424         PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1425
1426 # Targets for Third Degree testing.
1427
1428 test_prep.third: test_prep perl.third
1429         PERL=./perl.third $(MAKE) _test_prep
1430
1431 test.third check.third: test_prep.third perl.third
1432         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1433
1434 utest.third ucheck.third: test_prep.third perl.third
1435         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1436
1437 test_notty.third: test_prep.third perl.third
1438         PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1439
1440 # Targets for Deparse testing.
1441
1442 test.deparse:   test_prep
1443         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1444
1445 test_notty.deparse:     test_prep
1446         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1447
1448 # Targets to run the test suite with -t
1449
1450 test.taintwarn: test_prep
1451         PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1452
1453 minitest.prep:
1454         -@test -f lib/lib.pm && test -f lib/Config.pm || \
1455           $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
1456         @echo " "
1457         @echo "You may see some irrelevant test failures if you have been unable"
1458         @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
1459         @echo " "
1460
1461 # Can't depend on lib/Config.pm because that might be where miniperl
1462 # is crashing.
1463 minitest: miniperl$(EXE_EXT) lib/re.pm minitest.prep
1464         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1465                 && $(LDLIBPTH) $(RUN) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t mro/*.t </dev/tty
1466
1467 # Test via harness
1468
1469 test_harness: test_prep
1470         PERL=./perl $(MAKE) TESTFILE=harness _test
1471
1472 test_harness_notty: test_prep
1473         PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1474
1475 test-reonly: test_prep
1476         PERL=./perl TEST_ARGS='-re \\bpat\\b \\breg \\bre\b \\bsubst \\brxcode' $(MAKE) TESTFILE=harness _test
1477
1478 # Handy way to run perlbug -ok without having to install and run the
1479 # installed perlbug. We don't re-run the tests here - we trust the user.
1480 # Please *don't* use this unless all tests pass.
1481 # If you want to report test failures, use "make nok" instead.
1482
1483 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1484
1485 ok:     utilities
1486         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1487
1488 okfile: utilities
1489         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1490
1491 oknack: utilities
1492         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1493
1494 okfilenack:     utilities
1495         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1496
1497 nok:    utilities
1498         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1499
1500 nokfile:        utilities
1501         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1502
1503 noknack:        utilities
1504         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1505
1506 nokfilenack:    utilities
1507         $(LDLIBPTH) $(RUN) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1508
1509 .PHONY: clist hlist shlist pllist
1510
1511 clist:  $(c)
1512         echo $(c) | tr ' ' $(TRNL) >.clist
1513
1514 hlist:  $(h)
1515         echo $(h) | tr ' ' $(TRNL) >.hlist
1516
1517 shlist: $(sh)
1518         echo $(sh) | tr ' ' $(TRNL) >.shlist
1519
1520 pllist: $(pl)
1521         echo $(pl) | tr ' ' $(TRNL) >.pllist
1522
1523 Makefile: Makefile.SH ./config.sh
1524         $(SHELL) Makefile.SH
1525
1526 .PHONY: distcheck
1527 distcheck: FORCE
1528         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1529
1530 .PHONY: elc
1531 elc:    emacs/cperl-mode.elc
1532
1533 emacs/cperl-mode.elc: emacs/cperl-mode.el
1534         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1535
1536 .PHONY: etags ctags tags
1537
1538 etags:  TAGS
1539
1540 TAGS: emacs/cperl-mode.elc
1541         sh emacs/ptags
1542
1543 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1544 # This may also fail if . is in the head of the path, since perl will
1545 # require -Ilib
1546 tags:   TAGS
1547         perl emacs/e2ctags.pl TAGS > tags
1548
1549 ctags:
1550         ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1551
1552 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1553 # If this runs make out of memory, delete /usr/include lines.
1554 !NO!SUBS!
1555
1556 $eunicefix Makefile
1557 case `pwd` in
1558 *SH)
1559     $rm -f ../Makefile
1560     $ln Makefile ../Makefile
1561     ;;
1562 esac
1563 $rm -f $firstmakefile
1564
1565 # Now do any special processing required before building.
1566
1567 case "$ebcdic" in
1568 define)
1569     xxx=''
1570     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1571 case "$osname" in
1572 os390|posix-bc)
1573     if cd x2p
1574     then
1575         rm -f y.tab.c y.tab.h
1576         case "$osname" in
1577         posix-bc)
1578            # we are using two different yaccs in BS2000 Posix!
1579            byacc a2p.y >/dev/null 2>&1
1580            ;;
1581         *) # e.g. os390
1582            yacc  a2p.y >/dev/null 2>&1
1583            ;;
1584         esac
1585         if cmp -s y.tab.c a2p.c
1586         then
1587             rm -f y.tab.c
1588         else
1589             echo "a2p.y -> a2p.c" >&2
1590             mv -f y.tab.c a2p.c
1591             chmod u+w a2p.c
1592             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1593                 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1594                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1595             xxx="$xxx a2p.c"
1596         fi
1597         # In case somebody yacc -d:ed the a2p.y.
1598         if test -f y.tab.h
1599         then
1600             if cmp -s y.tab.h a2p.h
1601             then
1602                 rm -f y.tab.h
1603             else
1604                 echo "a2p.h -> a2p.h" >&2
1605                 mv -f y.tab.h a2p.h
1606                 xxx="$xxx a2p.h"
1607             fi
1608         fi
1609         cd ..
1610     fi
1611     ;;
1612 vmesa)
1613     # Do nothing in VM/ESA.
1614     ;;
1615 *)
1616     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1617     ;;
1618 esac
1619     case "$xxx" in
1620     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1621     esac
1622     ;;
1623 esac
1624
1625 # ex: set ts=8 sts=4 sw=4 noet: