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