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