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