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