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