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