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