This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
charnames.t: Test that can have string "0x..."
[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/Decomposition.pl lib/unicore/TestProp.pl \
346         lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
347         lib/unicore/Heavy.pl lib/unicore/mktables.lst
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 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) 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 .PHONY: preplibrary
730 preplibrary: miniperl $(CONFIGPM) lib/lib.pm lib/re.pm $(PREPLIBRARY_LIBPERL)
731
732 .PHONY: makeppport
733 makeppport: miniperl$(EXE_EXT) $(CONFIGPM)
734         $(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib mkppport
735
736 $(CROSS_LIB)/Config.pod: config.sh miniperl configpm Porting/Glossary
737         $(LDLIBPTH) ./miniperl -Ilib configpm --cross=$(CROSS_NAME)
738         cp *.h $(CROSS_LIB)/
739         cp ext/re/re.pm $(LIBDIR)/
740
741 $(CONFIGPM): $(CROSS_LIB)/Config.pod xconfig.h
742
743 lib/re.pm: ext/re/re.pm
744         @-rm -f $@
745         cp ext/re/re.pm lib/re.pm
746
747 $(plextract):   miniperl $(CONFIGPM) x2p/s2p
748         @-rm -f $@
749         $(LDLIBPTH) ./miniperl -I`pwd`/lib $@.PL
750
751 lib/lib.pm:     miniperl $(CONFIGPM)
752         @-rm -f $@
753         $(LDLIBPTH) ./miniperl -Ilib -MCross lib/lib_pm.PL
754
755 unidatafiles $(unidatafiles): uni.data
756
757 uni.data: miniperl$(EXE_EXT) $(CONFIGPM) lib/unicore/mktables
758         cd lib/unicore && $(LDLIBPTH) ../../miniperl -I../../lib mktables -P ../../pod -maketest -makelist -p
759 #       Commented out so always runs, mktables looks at far more files than we
760 #       can in this makefile to decide if needs to run or not
761 #       touch uni.data
762
763 extra.pods: miniperl
764         -@test ! -f extra.pods || rm -f `cat extra.pods`
765         -@rm -f extra.pods
766         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
767             nx=`echo $$x | sed -e "s/README\.//"`; \
768             cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
769             echo "pod/perl"$$nx".pod" >> extra.pods ; \
770         done
771         -@rm -f pod/perlvms.pod
772         -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
773         -@rm -f pod/perldelta.pod
774         -@test -f pod/perl5100delta.pod && cd pod && $(LNS) perl5100delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
775
776 extras.make: perl$(EXE_EXT)
777         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
778
779 extras.test: perl$(EXE_EXT)
780         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
781
782 extras.install: perl$(EXE_EXT)
783         -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
784
785 .PHONY: install install-strip install-all install-verbose install-silent \
786         no-install install.perl install.man install.html
787
788 META.yml:       Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
789         $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
790
791 install-strip:
792         $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
793
794 install install-all:
795         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
796
797 install-verbose:
798         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
799
800 install-silent:
801         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
802
803 no-install:
804         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
805
806 # Set this to an empty string to avoid an attempt of rebuild before install
807 INSTALL_DEPENDENCE = all
808
809 install.perl:   $(INSTALL_DEPENDENCE) installperl
810         $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
811         -@test ! -s extras.lst || $(MAKE) extras.install
812
813 install.man:    all installman
814         $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
815
816 # XXX Experimental. Hardwired values, but useful for testing.
817 # Eventually Configure could ask for some of these values.
818 install.html: all installhtml
819         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
820         $(LDLIBPTH) ./perl installhtml   \
821       --podroot=. --podpath=. --recurse  \
822       --htmldir=$(privlib)/html   \
823       --htmlroot=$(privlib)/html  \
824       --splithead=pod/perlipc     \
825       --splititem=pod/perlfunc    \
826       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
827       --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
828       --verbose
829
830
831 # I now supply perly.c with the kits, so the following section is
832 # used only if you force bison to run by saying
833 #       make regen_perly
834 # You normally shouldn't remake perly.[ch].
835
836 .PHONY: regen_perly
837
838 run_byacc:
839         @echo "run_byacc is obsolete; try 'make regen_perly' instead"
840
841 # this outputs perly.h, perly.act and perly.tab
842 regen_perly:
843         perl regen_perly.pl
844
845 # We don't want to regenerate perly.c and perly.h, but they might
846 # appear out-of-date after a patch is applied or a new distribution is
847 # made.
848 perly.c: perly.y
849         -@sh -c true
850
851 perly.h: perly.y
852         -@sh -c true
853
854 # No compat3.sym here since and including the 5.004_50.
855 # No interp.sym since 5.005_03.
856 SYM  = global.sym globvar.sym perlio.sym pp.sym
857
858 SYMH = perlvars.h intrpvar.h
859
860 CHMOD_W = chmod +w
861
862 # The following files are generated automatically
863 #       embed.pl:       proto.h embed.h embedvar.h global.sym
864 #                       perlapi.h perlapi.c 
865 # [* embed.pl needs pp.sym generated by opcode.pl! *]
866 #       keywords.pl:    keywords.h
867 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
868 #       regcomp.pl:     regnodes.h
869 #       warnings.pl:    warnings.h lib/warnings.pm
870 # The correct versions should be already supplied with the perl kit,
871 # in case you don't have perl available.
872 # To force them to be regenerated, run
873 #       perl regen.pl
874 # with your existing copy of perl
875 # (make regen_headers is kept for backwards compatibility)
876
877 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
878                 embed.h embedvar.h global.sym \
879                 perlapi.h perlapi.c regnodes.h \
880                 warnings.h lib/warnings.pm
881
882 .PHONY: regen_headers regen_all
883
884 regen regen_headers:    FORCE
885         -perl regen.pl
886
887 regen_all: regen
888
889 .PHONY: manisort manicheck
890
891 manisort:       FORCE
892         LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
893                 LC_ALL=C sort -fdo MANIFEST MANIFEST)
894
895 manicheck:      FORCE
896         perl Porting/manicheck
897
898 # Extensions:
899 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
900 # automatically get built.  There should ordinarily be no need to change
901 # any of this part of makefile.
902 #
903 # The dummy dependency is a place holder in case $(dynamic_ext) or
904 # $(static_ext) is empty.
905 #
906 # DynaLoader may be needed for extensions that use Makefile.PL.
907
908 ###$(DYNALOADER).c: $(EXTDIR)/DynaLoader/dl_dld.xs $(CONFIGPM)
909 ###     if not exist $(AUTODIR) mkdir $(AUTODIR)
910 ###     cd $(EXTDIR)\$(*B)
911 ###     $(HPERL) -I..\..\lib -MCross=$(CROSS_NAME) $(*B)_pm.PL
912 ###     $(HPERL) -I..\..\lib -MCross=$(CROSS_NAME) XSLoader_pm.PL
913 ###     cd ..\..\win32
914 ###     $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
915 ###     $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
916 ###     cd $(EXTDIR)\$(*B)
917 ###     $(XSUBPP) dl_win32.xs > $(*B).c
918 ###     cd ..\..\win32
919 ###
920 ###$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
921 ###     $(COPY) dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
922
923
924
925 $(DYNALOADER):  preplibrary FORCE
926         @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
927
928 d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
929         @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
930
931 s_dummy $(static_ext):  miniperl$(EXE_EXT) preplibrary makeppport $(DYNALOADER) FORCE
932         @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
933
934 n_dummy $(nonxs_ext):   miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
935         @$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --cross $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
936 !NO!SUBS!
937
938 $spitshell >>$Makefile <<EOF
939 $extra_dep
940 EOF
941
942 $spitshell >>$Makefile <<'!NO!SUBS!'
943
944 .PHONY: printconfig
945 printconfig:
946         @eval `$(LDLIBPTH) ./perl -Ilib -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
947
948 .PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
949         realclean _realcleaner clobber _clobber \
950         distclean veryclean _verycleaner
951
952 clean:          _tidy _mopup 
953
954 realclean:      _realcleaner _mopup
955         @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
956
957 _clobber:
958         -@rm -f Cross/run-* Cross/to-* Cross/from-*
959         rm -f config.sh cppstdin Policy.sh extras.lst
960
961 clobber:        _realcleaner _mopup _clobber
962
963 distclean:      clobber
964
965 # Like distclean but also removes emacs backups and *.orig.
966 veryclean:      _verycleaner _mopup _clobber
967         -@rm -f Obsolete Wanted
968
969 # Do not 'make _mopup' directly.
970 _mopup:
971         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c uudmap.h generate_uudmap$(EXE_EXT)
972         -rmdir .depending
973         -@test -f extra.pods && rm -f `cat extra.pods`
974         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
975         -rm -f perl.exp ext.libs extra.pods uni.data opmini.o
976         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
977         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
978         -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
979         -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
980         -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
981         -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
982         -rm -f perl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
983         -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
984         -rm -f config.over
985
986 # Do not 'make _tidy' directly.
987 _tidy:
988         -cd pod; $(LDLIBPTH) $(MAKE) clean
989         -cd utils; $(LDLIBPTH) $(MAKE) clean
990         -cd x2p; $(LDLIBPTH) $(MAKE) clean
991         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
992         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
993         done
994
995 _cleaner1:
996         -cd os2; rm -f Makefile
997         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
998         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
999         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
1000         -@if test -f miniperl$(EXE_EXT) ; then \
1001         for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1002         $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
1003         done ; \
1004         else \
1005         sh $(CLEAN).sh ; \
1006         fi
1007         rm -f realclean.sh veryclean.sh
1008         -@test ! -f ./miniperl$(EXE_EXT) || $(LDLIBPTH) ./miniperl$(EXE_EXT) -Ilib mkppport --clean
1009
1010 # Some systems do not support "?", so keep these files separate.
1011 _cleaner2:
1012         -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1013         rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1014         rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1015         rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1016         rm -rf $(addedbyconf)
1017         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1018         rm -f $(private)
1019         rm -rf $(unidatafiles) $(unidatadirs)
1020         rm -rf lib/auto
1021         rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1022         rm -f h2ph.man pstruct
1023         rm -rf .config
1024         rm -f preload
1025         rm -rf lib/Encode lib/Compress lib/Hash lib/re
1026         rm -rf lib/IO/Compress lib/IO/Uncompress
1027         rm -f lib/ExtUtils/ParseXS/t/XSTest.c
1028         rm -f lib/ExtUtils/ParseXS/t/XSTest$(OBJ_EXT)
1029         rm -f lib/ExtUtils/ParseXS/t/XSTest$(DLSUFFIX)
1030         -rmdir lib/B lib/Data
1031         -rmdir lib/Filter/Util lib/IO/Socket
1032         -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1033         -rmdir lib/threads lib/XS
1034
1035 _realcleaner:
1036         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1037         @$(LDLIBPTH) $(MAKE) _cleaner2
1038
1039 _verycleaner:
1040         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1041         @$(LDLIBPTH) $(MAKE) _cleaner2
1042         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1043
1044 .PHONY: lint
1045 lint: $(c)
1046         rm -f *.ln
1047         lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1048
1049 .PHONY: splint
1050 splint: $(c)
1051         splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1052
1053 # Need to unset during recursion to go out of loop.
1054 # The README below ensures that the dependency list is never empty and
1055 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1056
1057 MAKEDEPEND = Makefile makedepend
1058
1059 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1060         $(MAKE) depend MAKEDEPEND=
1061
1062 config.h: config_h.SH config.sh
1063         $(SHELL) config_h.SH
1064         # TODO - improve following line
1065         cp config.h $(CROSS_LIB)/
1066
1067 xconfig.h: config_h.SH Cross/config-$(CROSS_NAME).sh
1068         CONFIG_SH=Cross/config-$(CROSS_NAME).sh CONFIG_H=xconfig.h $(SHELL) config_h.SH
1069         #TODO $(LDLIBPTH) ./miniperl -Ilib -MCross=$(CROSS_NAME) config_h.PL "INST_VER=$(INST_VER)" "CORE_DIR=$(CROSS_LIB)" "CONFIG_H=xconfig.h"
1070         cp xconfig.h $(CROSS_LIB)/
1071         cp xconfig.h $(CROSS_LIB)/config.h
1072
1073 # When done, touch perlmain.c so that it doesn't get remade each time.
1074 .PHONY: depend
1075 depend: makedepend
1076         sh ./makedepend MAKE=$(MAKE)
1077         - test -s perlmain.c && touch perlmain.c
1078         cd x2p; $(MAKE) depend
1079
1080 # Cannot postpone this until $firstmakefile is ready ;-)
1081 makedepend: makedepend.SH config.sh
1082         sh ./makedepend.SH
1083
1084 .PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1085         test_tty test-tty _test_tty test_notty test-notty _test_notty \
1086         utest ucheck test.utf8 check.utf8 test.torture torturetest \
1087         test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
1088         test.third check.third utest.third ucheck.third test_notty.third \
1089         test.deparse test_notty.deparse test_harness test_harness_notty \
1090         minitest coretest test.taintwarn
1091
1092 # Cannot delegate rebuilding of t/perl to make
1093 # to allow interlaced test and minitest
1094
1095 TESTFILE=TEST
1096
1097 _test_prep:
1098         cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1099
1100 # Architecture-neutral stuff:
1101
1102 test_prep_pre: preplibrary utilities $(nonxs_ext)
1103
1104 test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1105         PERL=./perl $(MAKE) _test_prep
1106
1107 _test_tty:
1108         cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1109
1110 _test_notty:
1111         cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
1112
1113 # The second branch is for testing without a tty or controlling terminal,
1114 # see t/op/stat.t
1115 _test:
1116         if (true </dev/tty) >/dev/null 2>&1; then \
1117           $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty   ; \
1118         else \
1119           $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1120         fi
1121         @echo "Ran tests" > t/rantests
1122
1123 test check: test_prep
1124         PERL=./perl $(MAKE) _test
1125
1126 test_tty: test_prep
1127         PERL=./perl $(MAKE) _test_tty
1128
1129 test_notty: test_prep
1130         PERL=./perl $(MAKE) _test_notty
1131
1132 utest ucheck test.utf8 check.utf8: test_prep
1133         PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1134
1135 coretest: test_prep
1136         PERL=./perl TEST_ARGS=-core $(MAKE) _test
1137
1138 test-prep:      test_prep
1139
1140 test-tty:       test_tty
1141
1142 test-notty:     test_notty
1143
1144 # Torture testing
1145
1146 test.torture torturetest:       test_prep
1147         PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1148
1149 # Targets for UTF16 testing:
1150
1151 minitest.utf16: minitest.prep
1152         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1153                 && $(LDLIBPTH) ./perl TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1154
1155 test.utf16 check.utf16: test_prep
1156         PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1157
1158 utest.utf16 ucheck.utf16: test_prep
1159         PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1160
1161 # Targets for valgrind testing:
1162
1163 test_prep.valgrind: test_prep perl.valgrind
1164         PERL=./perl $(MAKE) _test_prep
1165
1166 test.valgrind check.valgrind:   test_prep perl.valgrind.config
1167         PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' $(MAKE) _test
1168
1169 utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind.config
1170         PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1171
1172 test_notty.valgrind: test_prep.valgrind perl.valgrind.config
1173         PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1174
1175 # Targets for Third Degree testing.
1176
1177 test_prep.third: test_prep perl.third
1178         PERL=./perl.third $(MAKE) _test_prep
1179
1180 test.third check.third: test_prep.third perl.third
1181         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1182
1183 utest.third ucheck.third: test_prep.third perl.third
1184         PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1185
1186 test_notty.third: test_prep.third perl.third
1187         PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1188
1189 # Targets for Deparse testing.
1190
1191 test.deparse:   test_prep
1192         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1193
1194 test_notty.deparse:     test_prep
1195         PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1196
1197 # Targets to run the test suite with -t
1198
1199 test.taintwarn: test_prep
1200         PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1201
1202 minitest.prep:
1203         -@test -f lib/lib.pm && test -f lib/Config.pm || \
1204           $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
1205         @echo " "
1206         @echo "You may see some irrelevant test failures if you have been unable"
1207         @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
1208         @echo " "
1209
1210 # Can't depend on lib/Config.pm because that might be where miniperl
1211 # is crashing.
1212 minitest: miniperl$(EXE_EXT) lib/re.pm minitest.prep
1213         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1214                 && $(LDLIBPTH) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1215
1216 # Test via harness
1217
1218 test_harness: test_prep
1219         PERL=./perl $(MAKE) TESTFILE=harness _test
1220
1221 test_harness_notty: test_prep
1222         PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1223
1224 # Handy way to run perlbug -ok without having to install and run the
1225 # installed perlbug. We don't re-run the tests here - we trust the user.
1226 # Please *don't* use this unless all tests pass.
1227 # If you want to report test failures, use "make nok" instead.
1228
1229 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1230
1231 ok:     utilities
1232         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1233
1234 okfile: utilities
1235         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1236
1237 oknack: utilities
1238         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1239
1240 okfilenack:     utilities
1241         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1242
1243 nok:    utilities
1244         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1245
1246 nokfile:        utilities
1247         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1248
1249 noknack:        utilities
1250         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1251
1252 nokfilenack:    utilities
1253         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1254
1255 .PHONY: clist hlist shlist pllist
1256
1257 clist:  $(c)
1258         echo $(c) | tr ' ' $(TRNL) >.clist
1259
1260 hlist:  $(h)
1261         echo $(h) | tr ' ' $(TRNL) >.hlist
1262
1263 shlist: $(sh)
1264         echo $(sh) | tr ' ' $(TRNL) >.shlist
1265
1266 pllist: $(pl)
1267         echo $(pl) | tr ' ' $(TRNL) >.pllist
1268
1269 Makefile: Makefile.SH ./config.sh
1270         $(SHELL) Makefile.SH
1271
1272 .PHONY: distcheck
1273 distcheck: FORCE
1274         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1275
1276 .PHONY: elc
1277 elc:    emacs/cperl-mode.elc
1278
1279 emacs/cperl-mode.elc: emacs/cperl-mode.el
1280         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1281
1282 .PHONY: etags ctags tags
1283
1284 etags:  TAGS
1285
1286 TAGS: emacs/cperl-mode.elc
1287         sh emacs/ptags
1288
1289 # Let's hope make will not go into an infinite loop on case-unsensitive systems
1290 # This may also fail if . is in the head of the path, since perl will
1291 # require -Ilib
1292 tags:   TAGS
1293         perl emacs/e2ctags.pl TAGS > tags
1294
1295 ctags:
1296         ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c *.c *.h
1297
1298 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1299 # If this runs make out of memory, delete /usr/include lines.
1300 !NO!SUBS!
1301
1302 $eunicefix $Makefile
1303 case `pwd` in
1304 *SH)
1305     $rm -f ../$Makefile
1306     $ln $Makefile ../$Makefile
1307     ;;
1308 esac
1309 $rm -f $firstmakefile
1310
1311 # Now do any special processing required before building.
1312
1313 case "$ebcdic" in
1314 define)
1315     xxx=''
1316     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1317 case "$osname" in
1318 os390|posix-bc)
1319     if cd x2p
1320     then
1321         rm -f y.tab.c y.tab.h
1322         case "$osname" in
1323         posix-bc)
1324            # we are using two different yaccs in BS2000 Posix!
1325            byacc a2p.y >/dev/null 2>&1
1326            ;;
1327         *) # e.g. os390
1328            yacc  a2p.y >/dev/null 2>&1
1329            ;;
1330         esac
1331         if cmp -s y.tab.c a2p.c
1332         then
1333             rm -f y.tab.c
1334         else
1335             echo "a2p.y -> a2p.c" >&2
1336             mv -f y.tab.c a2p.c
1337             chmod u+w a2p.c
1338             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1339                 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1340                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1341             xxx="$xxx a2p.c"
1342         fi
1343         # In case somebody yacc -d:ed the a2p.y.
1344         if test -f y.tab.h
1345         then
1346             if cmp -s y.tab.h a2p.h
1347             then
1348                 rm -f y.tab.h
1349             else
1350                 echo "a2p.h -> a2p.h" >&2
1351                 mv -f y.tab.h a2p.h
1352                 xxx="$xxx a2p.h"
1353             fi
1354         fi
1355         cd ..
1356     fi
1357     ;;
1358 vmesa)
1359     # Do nothing in VM/ESA.
1360     ;;
1361 *)
1362     echo "'$osname' is an EBCDIC system I don't know that well." >&4
1363     ;;
1364 esac
1365     case "$xxx" in
1366     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1367     esac
1368     ;;
1369 esac
1370
1371 # ex: set ts=8 sts=4 sw=4 noet: