This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add t/porting/libperl.t
[perl5.git] / Makefile.SH
... / ...
CommitLineData
1#!/bin/sh
2
3# quote() - Creates a shell literal
4# Usage: echo "...` quote "..." `..."
5quote() {
6 case "$1" in
7 '') echo "''" ;;
8 *) echo "$1" | sed 's/\([^a-zA-Z0-9.:_\-\/]\)/\\\1/g' ;;
9 esac
10}
11
12case $PERL_CONFIG_SH in
13'')
14 if test -f config.sh
15 then TOP=.
16 else
17 echo "Can't find config.sh."; exit 1
18 fi
19 . $TOP/config.sh
20 ;;
21esac
22
23Makefile=Makefile
24
25: This forces SH files to create target in same directory as SH file.
26: This is so that make depend always knows where to find SH derivatives.
27case "$0" in
28*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
29esac
30
31pwd="`pwd`"
32linklibperl='$(LIBPERL)'
33linklibperl_nonshr=''
34shrpldflags='$(LDDLFLAGS)'
35ldlibpth=''
36DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
37DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
38case "$useshrplib" in
39true)
40 # Prefix all runs of 'miniperl' and 'perl' with
41 # $ldlibpth so that ./perl finds *this* shared libperl.
42 case "$LD_LIBRARY_PATH" in
43 '') ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;;
44 *) ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$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 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 shrpldflags="$shrpldflags -Wl,--out-implib=libperl.dll.a -Wl,--image-base,0x52000000"
66 linklibperl="-L. -lperl"
67 ;;
68 sunos*)
69 linklibperl="-lperl"
70 ;;
71 netbsd*|freebsd[234]*|openbsd*|dragonfly*|bitrig*)
72 linklibperl="-L. -lperl"
73 ;;
74 interix*)
75 linklibperl="-L. -lperl"
76 shrpldflags="$shrpldflags -Wl,--image-base,0x57000000"
77 ;;
78 aix*)
79 case "$cc" in
80 gcc*)
81 shrpldflags="-shared -Wl,-H512 -Wl,-T512 -Wl,-bhalt:4 -Wl,-bM:SRE -Wl,-bE:perl.exp"
82 case "$osvers" in
83 3*) shrpldflags="$shrpldflags -e _nostart"
84 ;;
85 *) shrpldflags="$shrpldflags -Wl,-bnoentry"
86 ;;
87 esac
88 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
89 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
90 linklibperl_nonshr='-lperl_nonshr'
91 ;;
92 *)
93 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
94 case "$osvers" in
95 3*) shrpldflags="$shrpldflags -e _nostart"
96 ;;
97 *) shrpldflags="$shrpldflags -b noentry"
98 ;;
99 esac
100 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
101 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
102 linklibperl_nonshr='-lperl_nonshr'
103 ;;
104 esac
105 ;;
106 hpux*)
107 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
108 ;;
109 os390*)
110 shrpldflags='-W l,XPLINK,dll'
111 linklibperl='libperl.x'
112 DPERL_EXTERNAL_GLOB=''
113 ;;
114 esac
115 case "$ldlibpthname" in
116 '') ;;
117 *)
118 case "$osname" in
119 os2)
120 ldlibpth=''
121 ;;
122 *)
123 eval "ldlibpthval=\"\$$ldlibpthname\""
124
125 case "$ldlibpthval" in
126 '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;;
127 *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;;
128 esac
129
130 ;;
131 esac
132
133 ;;
134 esac
135
136 case "$osname" in
137 linux)
138 # If there is a pre-existing $libperl from a previous
139 # installation, Linux needs to use LD_PRELOAD to
140 # override the LD_LIBRARY_PATH setting. See the
141 # INSTALL file, under "Building a shared perl library".
142 # If there is no pre-existing $libperl, we don't need
143 # to do anything further.
144 if test -f $archlib/CORE/$libperl; then
145 rm -f preload
146 cat <<'EOT' > preload
147#! /bin/sh
148lib=$1
149shift
150test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
151exec "$@"
152EOT
153 chmod 755 preload
154 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
155 fi
156 ;;
157 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
158 ;;
159 esac
160
161 ;;
162
163*) pldlflags=''
164 static_ldflags='CCCDLFLAGS='
165 ;;
166esac
167
168: is Cwd static or dynamic
169static_cwd='define'
170list_util_dep='$(PERL_EXE)'
171for f in $dynamic_ext; do
172 case $f in
173 Cwd) static_cwd='undef' ;;
174 List/Util) list_util_dep=lib/auto/List/Util/Util.$dlext
175 esac
176done
177
178: Prepare dependency lists for Makefile.
179dynamic_list=' '
180dynamic_ext_re="lib/auto/re/re.$dlext"
181extra_dep='
182ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
183'
184for f in $dynamic_ext; do
185 : the dependency named here will never exist
186 base=`echo "$f" | sed 's/.*\///'`
187 this_target="lib/auto/$f/$base.$dlext"
188 dynamic_list="$dynamic_list $this_target"
189
190 : Parallel makes reveal that we have some interdependencies
191 case $f in
192 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
193$this_target: $list_util_dep" ;;
194 Unicode/Normalize) extra_dep="$extra_dep
195$this_target: uni.data" ;;
196 esac
197done
198
199static_list=' '
200for f in $static_ext; do
201 base=`echo "$f" | sed 's/.*\///'`
202 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
203 : Parallel makes reveal that we have some interdependencies
204 this_target="lib/auto/$f/$base\$(LIB_EXT)"
205 case $f in
206 Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
207$this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
208 Unicode/Normalize) extra_dep="$extra_dep
209$this_target: uni.data" ;;
210 esac
211done
212
213nonxs_list=' '
214for f in $nonxs_ext; do
215 p=`echo "$f" | tr / -`
216 for d in ext dist cpan; do
217 if test -d $d/$p; then
218 nonxs_list="$nonxs_list $d/$p/pm_to_blib"
219 fi
220 done
221done
222
223dtrace_h=''
224dtrace_o=''
225minidtrace_o=''
226case "$usedtrace" in
227define|true)
228 dtrace_h='perldtrace.h'
229 $dtrace -G -s perldtrace.d -o perldtrace.tmp >/dev/null 2>&1 \
230 && rm -f perldtrace.tmp && dtrace_o='perldtrace$(OBJ_EXT)' \
231 && minidtrace_o='miniperldtrace$(OBJ_EXT)'
232 ;;
233esac
234
235echo "Extracting $Makefile (with variable substitutions)"
236$spitshell >$Makefile <<!GROK!THIS!
237# $Makefile
238# This file is derived from Makefile.SH. Any changes made here will
239# be lost the next time you run Configure.
240# Makefile is used to generate $firstmakefile. The only difference
241# is that $firstmakefile has the dependencies filled in at the end.
242
243CC = $cc
244LD = $ld
245
246LDFLAGS = $ldflags
247CLDFLAGS = $ldflags
248
249mallocsrc = $mallocsrc
250mallocobj = $mallocobj
251LNS = $lns
252# NOTE: some systems don't grok "cp -f". XXX Configure test needed?
253CPS = $cp
254RMS = rm -f
255ranlib = $ranlib
256
257# The following are mentioned only to make metaconfig include the
258# appropriate questions in Configure. If you want to change these,
259# edit config.sh instead, or specify --man1dir=/wherever on
260# installman commandline.
261bin = $installbin
262scriptdir = $scriptdir
263shrpdir = $archlibexp/CORE
264privlib = $installprivlib
265man1dir = $man1dir
266man1ext = $man1ext
267man3dir = $man3dir
268man3ext = $man3ext
269
270# The following are used to build and install shared libraries for
271# dynamic loading.
272LDDLFLAGS = $lddlflags
273SHRPLDFLAGS = $shrpldflags
274CCDLFLAGS = $ccdlflags
275DLSUFFIX = .$dlext
276PLDLFLAGS = $pldlflags
277LIBPERL = $libperl
278LLIBPERL= $linklibperl
279LLIBPERL_NONSHR= $linklibperl_nonshr
280SHRPENV = $shrpenv
281
282# Static targets are ordinarily built without CCCDLFLAGS. However,
283# if building a shared libperl.so that might later be linked into
284# another application, then it might be appropriate to also build static
285# extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
286# for GNU cc).
287STATIC_LDFLAGS = $static_ldflags
288
289# The following is used to include the current directory in
290# the dynamic loader path you are building a shared libperl.
291LDLIBPTH = $ldlibpth
292
293# Sometimes running an executable is an adventure.
294RUN =
295
296# When cross-compiling we want to use a (mini)perl built for the host, not the target
297HOST_PERL = $hostperl
298HOST_GENERATE = $hostgenerate
299SYSTEM_PERL = $perl
300
301# These variables may need to be manually set for non-Unix systems.
302AR = $full_ar
303HOST_EXE_EXT = $_exe
304EXE_EXT = $_exe
305LIB_EXT = $_a
306OBJ_EXT = $_o
307PATH_SEP = $p_
308
309# Macros to invoke a copy of miniperl during the build. Targets which
310# are built using these macros should depend on \$(MINIPERL_EXE)
311MINIPERL_EXE = miniperl\$(EXE_EXT)
312MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
313
314!GROK!THIS!
315
316case "$usecrosscompile$perl" in
317define?*)
318 $spitshell >>$Makefile <<!GROK!THIS!
319# Macros to invoke a copy of our fully operational perl during the build.
320PERL_EXE = perl\$(EXE_EXT)
321RUN_PERL = \$(LDLIBPTH) \$(RUN) $perl\$(EXE_EXT)
322!GROK!THIS!
323 ;;
324*)
325 $spitshell >>$Makefile <<!GROK!THIS!
326# Macros to invoke a copy of our fully operational perl during the build.
327PERL_EXE = perl\$(EXE_EXT)
328RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib
329!GROK!THIS!
330 ;;
331esac
332
333$spitshell >>$Makefile <<!GROK!THIS!
334# Macros to run our tests
335RUN_TESTS = \$(LDLIBPTH) ./runtests
336
337dynamic_ext = $dynamic_list
338dynamic_ext_re = $dynamic_ext_re
339static_ext = $static_list
340nonxs_ext = $nonxs_list
341ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
342DYNALOADER = DynaLoader\$(OBJ_EXT)
343
344libs = $perllibs $cryptlib
345
346public = \$(PERL_EXE) utilities
347
348shellflags = $shellflags
349
350# This is set to MAKE=$make if your $make command doesn't
351# do it for you.
352$make_set_make
353
354# Mention $gmake here so it gets probed for by Configure.
355
356!GROK!THIS!
357
358case "${osname}" in
359linux*|darwin)
360$spitshell >>$Makefile <<!GROK!THIS!
361# If you're going to use valgrind and it can't be invoked as plain valgrind
362# then you'll need to change this, or override it on the make command line.
363VALGRIND ?= valgrind
364VG_TEST ?= ./perl -e 1 2>/dev/null
365
366!GROK!THIS!
367 ;;
368esac
369
370$spitshell >>$Makefile <<!GROK!THIS!
371DTRACE = $dtrace
372DTRACE_H = $dtrace_h
373DTRACE_O = $dtrace_o
374MINIDTRACE_O = $minidtrace_o
375
376FIRSTMAKEFILE = $firstmakefile
377
378# Any special object files needed by this architecture, e.g. os2/os2.obj
379ARCHOBJS = $archobjs
380
381.SUFFIXES: .c \$(OBJ_EXT) .i .s
382
383# grrr
384SHELL = $sh
385
386# how to tr(anslate) newlines
387TRNL = '$trnl'
388
389OPTIMIZE = $optimize
390
391EXTRAS = $extras
392
393INSTALLPREFIXEXP = $prefix
394
395!GROK!THIS!
396# not used by Makefile but by installperl;
397# mentioned here so that metaconfig picks these up
398# $installusrbinperl
399# $versiononly
400
401case "${osname}:${osvers}" in
402darwin:*)
403$spitshell >>$Makefile <<EOF
404
405# Your locales are broken (osname $osname, osvers $osvers)
406# and to avoid the numerous
407# perl: warning: Setting locale failed.
408# warnings during the build process we reset the locale variables.
409
410LC_ALL=C
411LANG=C
412LANGUAGE=C
413EOF
414 ;;
415esac
416
417## In the following dollars and backticks do not need the extra backslash.
418$spitshell >>$Makefile <<'!NO!SUBS!'
419
420CCCMD = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
421
422CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
423
424CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
425CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
426
427CONFIGPOD = lib/Config.pod
428
429CONFIGH = config.h
430!NO!SUBS!
431
432SH_to_target() {
433 echo $@ | sed -e s/\\\.SH//g -e s/_/./g
434}
435
436SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH'
437shextract=`SH_to_target $SH`
438
439## In the following dollars and backticks do not need the extra backslash.
440$spitshell >>$Makefile <<!GROK!THIS!
441
442private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
443
444# Files to be built with variable substitution before miniperl
445# is available.
446sh = $SH
447
448shextract = $shextract
449!GROK!THIS!
450
451## In the following dollars and backticks do not need the extra backslash.
452$spitshell >>$Makefile <<'!NO!SUBS!'
453
454addedbyconf = UU $(shextract) pstruct
455
456# Unicode data files generated by mktables
457unidatafiles = lib/unicore/Decomposition.pl lib/unicore/TestProp.pl \
458 lib/unicore/CombiningClass.pl lib/unicore/Name.pl \
459 lib/unicore/UCD.pl lib/unicore/Name.pm \
460 lib/unicore/Heavy.pl lib/unicore/mktables.lst
461
462# Directories of Unicode data files generated by mktables
463unidatadirs = lib/unicore/To lib/unicore/lib
464
465h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
466h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
467h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
468h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
469h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
470h6 = charclass_invlists.h
471h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
472
473c1 = av.c scope.c op.c doop.c doio.c dump.c gv.c hv.c mg.c reentr.c mro.c perl.c
474c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
475c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
476c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c
477c5 = $(mallocsrc)
478
479c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
480
481obj0 = op$(OBJ_EXT) perl$(OBJ_EXT)
482obj0mini = perlmini$(OBJ_EXT) opmini$(OBJ_EXT) miniperlmain$(OBJ_EXT)
483obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT) mro$(OBJ_EXT) keywords$(OBJ_EXT)
484obj2 = hv$(OBJ_EXT) av$(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)
485obj3 = 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) caretx$(OBJ_EXT)
486
487minindt_obj = $(obj0mini) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
488mini_obj = $(minindt_obj) $(MINIDTRACE_O)
489ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
490obj = $(ndt_obj) $(DTRACE_O)
491
492perltoc_pod_prereqs = extra.pods pod/perl5212delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
493generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
494generated_headers = uudmap.h bitcount.h mg_data.h
495
496lintflags = \
497 -b \
498 -n \
499 -p \
500 -Ncheck=%all \
501 -Nlevel=4 \
502 -errchk=parentheses \
503 -errhdr=%all \
504 -errfmt=src \
505 -errtags \
506 -erroff=E_ASSIGN_NARROW_CONV \
507 -erroff=E_BAD_PTR_CAST \
508 -erroff=E_BAD_PTR_CAST_ALIGN \
509 -erroff=E_BAD_PTR_INT_COMBINATION \
510 -erroff=E_BAD_SIGN_EXTEND \
511 -erroff=E_BLOCK_DECL_UNUSED \
512 -erroff=E_CASE_FALLTHRU \
513 -erroff=E_CONST_EXPR \
514 -erroff=E_CONSTANT_CONDITION \
515 -erroff=E_END_OF_LOOP_CODE_NOT_REACHED \
516 -erroff=E_EQUALITY_NOT_ASSIGNMENT \
517 -erroff=E_EXPR_NULL_EFFECT \
518 -erroff=E_FALSE_LOGICAL_EXPR \
519 -erroff=E_INCL_NUSD \
520 -erroff=E_LOOP_EMPTY \
521 -erroff=E_MAIN_PARAM \
522 -erroff=E_POINTER_TO_OBJECT \
523 -erroff=E_PTRDIFF_OVERFLOW \
524 -erroff=E_SHIFT_CNT_NEG_TOO_BIG_L \
525 -erroff=E_STATIC_UNUSED \
526 -erroff=E_TRUE_LOGICAL_EXPR
527
528splintflags = \
529 -I/usr/lib/gcc/i486-linux-gnu/4.0.2/include/ \
530 -D__builtin_va_list=va_list \
531 -Dsigjmp_buf=jmp_buf \
532 -warnposix \
533 \
534 +boolint \
535 +charintliteral \
536 -fixedformalarray \
537 -mustfreefresh \
538 -nestedextern \
539 -predboolint \
540 -predboolothers \
541 -preproc \
542 -boolops \
543 -shadow \
544 -nullstate \
545 +longintegral \
546 +matchanyintegral \
547 -type \
548 \
549 +line-len 999 \
550 +weak
551
552splintfiles = $(c1)
553
554.c$(OBJ_EXT):
555 @echo `$(CCCMD)` $(PLDLFLAGS) $*.c
556 @`$(CCCMD)` $(PLDLFLAGS) $*.c
557
558.c.i:
559 @echo `$(CCCMDSRC)` -E $*.c \> $*.i
560 @`$(CCCMDSRC)` -E $*.c > $*.i
561
562.c.s:
563 @echo `$(CCCMDSRC)` -S $*.c
564 @`$(CCCMDSRC)` -S $*.c
565
566all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
567 @echo " ";
568 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
569
570.PHONY: all utilities
571
572# Both git_version.h and lib/Config_git.pl are built
573# by make_patchnum.pl.
574git_version.h: lib/Config_git.pl
575
576lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl
577 $(MINIPERL) make_patchnum.pl
578
579# make sure that we recompile perl.c if the git version changes
580perl$(OBJ_EXT): git_version.h
581
582!NO!SUBS!
583
584# Making utilities requires Cwd. If we have dynamic
585# loading, we only need miniperl and Cwd.$dlext. If we have static
586# loading, we need to build perl first.
587case "$usedl$static_cwd" in
588defineundef)
589 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
590 ;;
591definedefine)
592 util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
593 ;;
594*) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
595 ;;
596esac
597
598$spitshell >>$Makefile <<!GROK!THIS!
599utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
600 \$(MINIPERL) -Ilib utils/Makefile.PL
601
602utilities: utils/Makefile $util_deps
603 @echo " "; echo " Making utilities"; cd utils; \$(LDLIBPTH) \$(MAKE) all
604
605!GROK!THIS!
606
607$spitshell >>$Makefile <<'!NO!SUBS!'
608
609# This is now done by installman only if you actually want the man pages.
610# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
611
612# Phony target to force checking subdirectories.
613# Apparently some makes require an action for the FORCE target.
614.PHONY: FORCE
615FORCE:
616 @sh -c true
617!NO!SUBS!
618
619for file in op perl; do
620 if $issymlink $file.c; then
621 $spitshell >>$Makefile <<!GROK!THIS!
622
623# We do a copy of the $file.c instead of a symlink because gcc gets huffy
624# if we have a symlink forest to another disk (it complains about too many
625# levels of symbolic links, even if we have only two)
626
627${file}mini.c: $file.c
628 \$(RMS) ${file}mini.c
629 \$(CPS) ${file}.c ${file}mini.c
630!GROK!THIS!
631 else
632 $spitshell >>$Makefile <<!GROK!THIS!
633
634${file}mini.c: $file.c
635 \$(RMS) ${file}mini.c
636 \$(LNS) ${file}.c ${file}mini.c
637!GROK!THIS!
638 fi
639
640 $spitshell >>$Makefile <<!GROK!THIS!
641
642${file}mini\$(OBJ_EXT): ${file}mini.c
643 echo @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
644 @\`\$(CCCMD)\` \$(PLDLFLAGS) $DPERL_IS_MINIPERL $DPERL_EXTERNAL_GLOB ${file}mini.c
645!GROK!THIS!
646done
647
648$spitshell >>$Makefile <<'!NO!SUBS!'
649
650globals$(OBJ_EXT): $(generated_headers)
651
652uudmap.h mg_data.h: bitcount.h
653
654generate_uudmap$(OBJ_EXT): mg_raw.h
655
656!NO!SUBS!
657
658# If hostgerenate isn't defined, then we have to build
659# generate_uudmap and run it. This can potentially mean running
660# it on the target system if we're cross-compiling.
661# If it is defined, then we just run it locally.
662case "$hostgenerate" in
663'')
664$spitshell >>$Makefile <<!GROK!THIS!
665bitcount.h: generate_uudmap\$(HOST_EXE_EXT)
666 $run ./generate_uudmap\$(HOST_EXE_EXT) \$(generated_headers)
667 -@for f in \$(generated_headers); do \\
668 $from \$\$f; \\
669 done
670
671!GROK!THIS!
672
673$spitshell >>$Makefile <<'!NO!SUBS!'
674generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
675 $(CC) -o generate_uudmap$(EXE_EXT) $(LDFLAGS) generate_uudmap$(OBJ_EXT) $(libs)
676
677!NO!SUBS!
678;;
679*)
680$spitshell >>$Makefile <<'!NO!SUBS!'
681bitcount.h: generate_uudmap$(HOST_EXE_EXT)
682 ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
683
684generate_uudmap$(HOST_EXE_EXT): generate_uudmap$(OBJ_EXT)
685 -@rm generate_uudmap$(HOST_EXE_EXT)
686 $(LNS) $(HOST_GENERATE) generate_uudmap$(HOST_EXE_EXT)
687
688!NO!SUBS!
689;;
690esac
691
692
693$spitshell >>$Makefile <<'!NO!SUBS!'
694perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib
695 $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext)
696
697# The file ext.libs is a list of libraries that must be linked in
698# for static extensions, e.g. -lm -lgdbm, etc. The individual
699# static extension Makefile's add to it.
700ext.libs: $(static_ext)
701 -@test -f ext.libs || touch ext.libs
702
703!NO!SUBS!
704
705# How to build libperl. This is still rather convoluted.
706# Load up custom Makefile.SH fragment for shared loading and executables:
707case "$osname" in
708*)
709 Makefile_s="$osname/Makefile.SHs"
710 ;;
711esac
712
713case "$osname" in
714aix)
715 $spitshell >>$Makefile <<!GROK!THIS!
716LIBS = $perllibs
717# In AIX we need to change this for building Perl itself from
718# its earlier definition (which is for building external
719# extensions *after* Perl has been built and installed)
720CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
721
722!GROK!THIS!
723 case "$useshrplib" in
724 define|true|[yY]*)
725 $spitshell >>$Makefile <<'!NO!SUBS!'
726
727LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
728MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
729
730$(LIBPERL_NONSHR): $(obj)
731 $(RMS) $(LIBPERL_NONSHR)
732 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
733
734$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
735 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
736 opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
737
738MINIPERLEXP = $(MINIPERL_NONSHR)
739
740LIBPERLEXPORT = perl.exp
741
742!NO!SUBS!
743
744 ;;
745 *)
746 $spitshell >>$Makefile <<'!NO!SUBS!'
747MINIPERLEXP = $(MINIPERL_EXE)
748
749PERLEXPORT = perl.exp
750
751!NO!SUBS!
752 ;;
753 esac
754 $spitshell >>$Makefile <<'!NO!SUBS!'
755perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
756 ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
757
758!NO!SUBS!
759 ;;
760os2)
761 $spitshell >>$Makefile <<'!NO!SUBS!'
762MINIPERLEXP = miniperl
763
764perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
765 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
766
767!NO!SUBS!
768 ;;
769cygwin)
770 $spitshell >>$Makefile <<'!NO!SUBS!'
771cygwin.c: cygwin/cygwin.c
772 $(LNS) cygwin/cygwin.c
773
774LIBPERL_NONSHR = libperl$(LIB_EXT)
775
776$(LIBPERL_NONSHR): $(obj)
777 $(RMS) $(LIBPERL_NONSHR)
778 $(AR) rcu $(LIBPERL_NONSHR) $(obj)
779
780!NO!SUBS!
781 ;;
782esac
783
784if test -s $Makefile_s ; then
785 . $Makefile_s
786 $spitshell >>$Makefile <<!GROK!THIS!
787
788Makefile: $Makefile_s
789!GROK!THIS!
790else
791 case "$dtrace_h" in
792 ?*)
793 $spitshell >>$Makefile <<'!NO!SUBS!'
794# dtrace dicards const qualifiers from arguments, put them back
795$(DTRACE_H): perldtrace.d
796 $(DTRACE) -h -s perldtrace.d -o $(DTRACE_H).in
797 sed -e '/const/!s/char \*/const char */g' $(DTRACE_H).in >$(DTRACE_H)
798 $(RMS) $(DTRACE_H).in
799
800mydtrace.h: $(DTRACE_H)
801
802!NO!SUBS!
803 ;;
804 esac
805 case "$dtrace_o" in
806 ?*)
807 $spitshell >>$Makefile <<'!NO!SUBS!'
808$(DTRACE_O): perldtrace.d $(ndt_obj)
809 $(DTRACE) -G -s perldtrace.d -o $(DTRACE_O) $(ndt_obj)
810
811$(MINIDTRACE_O): perldtrace.d $(minindt_obj) perlmini$(OBJ_EXT)
812 $(DTRACE) -G -s perldtrace.d -o $(MINIDTRACE_O) $(minindt_obj) perlmini$(OBJ_EXT)
813
814!NO!SUBS!
815 ;;
816 esac
817 $spitshell >>$Makefile <<'!NO!SUBS!'
818$(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT)
819!NO!SUBS!
820 case "$useshrplib" in
821 true)
822 $spitshell >>$Makefile <<'!NO!SUBS!'
823 rm -f $@
824 $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs)
825!NO!SUBS!
826 case "$osname" in
827 aix)
828 $spitshell >>$Makefile <<'!NO!SUBS!'
829 rm -f libperl$(OBJ_EXT)
830 mv $@ libperl$(OBJ_EXT)
831 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
832!NO!SUBS!
833 ;;
834 esac
835 ;;
836 *)
837 $spitshell >>$Makefile <<'!NO!SUBS!'
838 rm -f $(LIBPERL)
839 $(AR) rcu $(LIBPERL) $(obj) $(DYNALOADER)
840 @$(ranlib) $(LIBPERL)
841!NO!SUBS!
842 ;;
843 esac
844 $spitshell >>$Makefile <<'!NO!SUBS!'
845
846# How to build executables.
847
848# The $& notation tells Sequent machines that it can do a parallel make,
849# and is harmless otherwise.
850# The miniperl -w -MExporter line is a basic cheap test to catch errors
851# before make goes on to run preplibrary and then MakeMaker on extensions.
852# This is very handy because later errors are often caused by miniperl
853# build problems but that's not obvious to the novice.
854# The Module used here must not depend on Config or any extensions.
855
856# The seemingly cranky ordering of having $(MINIPERL_EXE) depend on
857# lib/buildcustomize.pl despite the reality that lib/buildcustomize.pl needs
858# miniperl to exist first permits us to
859# a) have one rule generate both miniperl and lib/buildcustomize.pl
860# (so that lib/buildcustomize.pl is always available. This simplifies things)
861# b) have the rest of the Makefile depend on the more obvious $(MINIPERL_EXE)
862
863$(MINIPERL_EXE): lib/buildcustomize.pl
864
865!NO!SUBS!
866
867 case "${osname}${osvers}" in
868 aix*)
869 $spitshell >>$Makefile <<'!NO!SUBS!'
870lib/buildcustomize.pl: $& $(mini_obj)
871 $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs)
872 $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
873 $(MINIPERL) -f write_buildcustomize.pl
874!NO!SUBS!
875 ;;
876 next4*)
877 $spitshell >>$Makefile <<'!NO!SUBS!'
878lib/buildcustomize.pl: $& $(mini_obj) write ldcustomize.pl
879 $(CC) -o $(MINIPERL_EXE) $(mini_obj libs)
880 $(LDLIBPTH) ./miniperl$(HOST _EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
881 $(MINIPERL) -f write_buildcustomize.pl
882!NO!SUBS!
883 ;;
884 darwin*)
885 case "$osvers" in
886 [1-6].*) ;;
887 *) case "$ldflags" in
888 *"-flat_namespace"*) ;;
889 *) # to allow opmini.o to override stuff in libperl.dylib
890 $spitshell >>$Makefile <<!NO!SUBS!
891NAMESPACEFLAGS = -force_flat_namespace
892!NO!SUBS!
893 ;;
894 esac
895 ;;
896 esac
897 $spitshell >>$Makefile <<'!NO!SUBS!'
898lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
899 -@rm -f miniperl.xok
900 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \
901 $(mini_obj) $(libs)
902 $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
903 $(MINIPERL) -f write_buildcustomize.pl
904!NO!SUBS!
905 ;;
906 *)
907 if test "X$hostperl" != X; then
908 $spitshell >>$Makefile <<!GROK!THIS!
909lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl
910 -@rm -f miniperl.xok
911 -@rm \$(MINIPERL_EXE)
912 \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE)
913 \$(LDLIBPTH) ./miniperl\$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
914 \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname"
915!GROK!THIS!
916 else
917 $spitshell >>$Makefile <<'!NO!SUBS!'
918lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl
919 -@rm -f miniperl.xok
920 $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
921 $(mini_obj) $(libs)
922 $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
923 $(MINIPERL) -f write_buildcustomize.pl
924!NO!SUBS!
925 fi
926 ;;
927 esac
928
929 $spitshell >>$Makefile <<'!NO!SUBS!'
930
931$(PERL_EXE): $& perlmain$(OBJ_EXT) $(LIBPERL) $(static_ext) ext.libs $(PERLEXPORT) write_buildcustomize.pl
932 -@rm -f miniperl.xok
933 $(SHRPENV) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
934
935# Microperl. This is just a convenience thing if one happens to
936# build also the full Perl and therefore the real big Makefile:
937# usually one should manually explicitly issue the below command.
938
939.PHONY: microperl
940microperl:
941 $(MAKE) -f Makefile.micro
942
943!NO!SUBS!
944
945fi
946
947# Some environment have no system(), which mkpport uses.
948# Let's try running the commands with shell.
949case "${osname}" in
950catamount)
951$spitshell >>$Makefile <<!GROK!THIS!
952.PHONY: makeppport
953makeppport: \$(MINIPERL_EXE) \$(CONFIGPM)
954 -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \
955 (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \
956 done
957
958!GROK!THIS!
959;;
960*)
961$spitshell >>$Makefile <<'!NO!SUBS!'
962.PHONY: makeppport
963makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
964 $(MINIPERL) mkppport
965
966!NO!SUBS!
967;;
968esac
969
970$spitshell >>$Makefile <<'!NO!SUBS!'
971
972.PHONY: preplibrary
973preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL)
974
975$(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD)
976
977$(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl
978 $(MINIPERL) configpm
979
980unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
981
982uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext)
983 $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p
984# Commented out so always runs, mktables looks at far more files than we
985# can in this makefile to decide if needs to run or not
986# touch uni.data
987
988# $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5
989# But also this ensures that all extensions are built before we try to scan
990# them, which picks up Devel::PPPort's documentation.
991pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
992 $(RUN_PERL) -f pod/buildtoc -q
993
994pod/perlapi.pod: pod/perlintern.pod
995
996pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
997 $(MINIPERL) autodoc.pl
998
999pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1000 $(MINIPERL) pod/perlmodlib.PL -q
1001
1002pod/perl5212delta.pod: pod/perldelta.pod
1003 $(RMS) pod/perl5212delta.pod
1004 $(LNS) perldelta.pod pod/perl5212delta.pod
1005
1006extra.pods: $(MINIPERL_EXE)
1007 -@test ! -f extra.pods || rm -f `cat extra.pods`
1008 -@rm -f extra.pods
1009 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
1010 nx=`echo $$x | sed -e "s/README\.//"`; \
1011 $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
1012 echo "pod/perl"$$nx".pod" >> extra.pods ; \
1013 done
1014
1015extras.make: $(PERL_EXE)
1016 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
1017
1018extras.test: $(PERL_EXE)
1019 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
1020
1021extras.install: $(PERL_EXE)
1022 -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1023
1024.PHONY: install install-strip install-all install-verbose install-silent \
1025 no-install install.perl install.man install.html
1026
1027# Set this to an empty string to avoid an attempt of rebuild before install
1028INSTALL_DEPENDENCE = all
1029
1030no_install no-install: install-notify
1031
1032install: install-all
1033!NO!SUBS!
1034
1035
1036for name in all notify silent strip verbose; do
1037 flags="--$name";
1038 flags=`echo $flags | sed -e 's/--all//'`
1039 if test "X$hostperl" != X; then
1040 $spitshell >>$Makefile <<EOT
1041
1042install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1043 \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1044 \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1045EOT
1046 else
1047 $spitshell >>$Makefile <<EOT
1048
1049install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1050 \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1051 \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1052EOT
1053 fi
1054
1055 test $name = notify || echo ' -@test ! -s extras.lst || PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) -Ilib -MCPAN -e '\''@ARGV&&install(@ARGV)'\'' `cat extras.lst`' >>$Makefile
1056done
1057
1058if test "X$hostperl" != X; then
1059 $spitshell >>$Makefile <<'!NO!SUBS!'
1060install.perl: $(INSTALL_DEPENDENCE) installperl
1061 $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1062 -@test ! -s extras.lst || $(MAKE) extras.install
1063
1064install.man: all installman
1065 $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1066
1067# XXX Experimental. Hardwired values, but useful for testing.
1068# Eventually Configure could ask for some of these values.
1069install.html: all installhtml
1070 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1071 $(HOST_PERL) installhtml \
1072 --podroot=. --podpath=. --recurse \
1073 --htmldir=$(privlib)/html \
1074 --htmlroot=$(privlib)/html \
1075 --splithead=pod/perlipc \
1076 --splititem=pod/perlfunc \
1077 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1078 --verbose
1079!NO!SUBS!
1080else
1081 $spitshell >>$Makefile <<'!NO!SUBS!'
1082install.perl: $(INSTALL_DEPENDENCE) installperl
1083 $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1084 -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
1085
1086install.man: all installman
1087 $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
1088
1089# XXX Experimental. Hardwired values, but useful for testing.
1090# Eventually Configure could ask for some of these values.
1091install.html: all installhtml
1092 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
1093 $(RUN_PERL) installhtml \
1094 --podroot=. --podpath=. --recurse \
1095 --htmldir=$(privlib)/html \
1096 --htmlroot=$(privlib)/html \
1097 --splithead=pod/perlipc \
1098 --splititem=pod/perlfunc \
1099 --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \
1100 --verbose
1101!NO!SUBS!
1102fi
1103
1104$spitshell >>$Makefile <<'!NO!SUBS!'
1105
1106# I now supply perly.c with the kits, so the following section is
1107# used only if you force bison to run by saying
1108# make regen_perly
1109# You normally shouldn't remake perly.[ch].
1110
1111.PHONY: regen_perly
1112
1113run_byacc run-byacc:
1114 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
1115
1116# this outputs perly.h, perly.act and perly.tab
1117regen_perly regen-perly:
1118 perl regen_perly.pl
1119
1120# We don't want to regenerate perly.c and perly.h, but they might
1121# appear out-of-date after a patch is applied or a new distribution is
1122# made.
1123perly.c: perly.y
1124 -@sh -c true
1125
1126perly.h: perly.y
1127 -@sh -c true
1128
1129SYM = globvar.sym perlio.sym
1130
1131SYMH = perlvars.h intrpvar.h
1132
1133CHMOD_W = chmod +w
1134
1135# The following files are generated automatically
1136# embed.pl: proto.h embed.h embedvar.h perlapi.h perlapi.c
1137# opcode.pl: opcode.h opnames.h pp_proto.h
1138# regcomp.pl: regnodes.h
1139# warnings.pl: warnings.h lib/warnings.pm
1140# feature.pl: feature.h lib/feature.pm
1141# The correct versions should be already supplied with the perl kit,
1142# in case you don't have perl available.
1143# To force them to be regenerated, run
1144# perl regen.pl
1145# with your existing copy of perl
1146# (make regen_headers is kept for backwards compatibility)
1147
1148AUTOGEN_FILES = opcode.h opnames.h pp_proto.h proto.h embed.h embedvar.h \
1149 perlapi.h perlapi.c regnodes.h warnings.h lib/warnings.pm \
1150 lib/feature.pm feature.h
1151
1152.PHONY: regen_headers regen_all
1153
1154regen: FORCE
1155 -perl regen.pl
1156 -perl regen/uconfig_h.pl
1157
1158regen_headers regen-headers: FORCE
1159 -perl regen.pl -v
1160 -perl regen/uconfig_h.pl -v
1161
1162regen_meta regen-meta: META.yml META.json
1163
1164META.yml: FORCE
1165 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1166
1167META.json: FORCE
1168 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1169
1170
1171regen_all regen-all: regen regen_meta
1172
1173.PHONY: manisort manicheck
1174
1175manisort: FORCE
1176 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1177 perl Porting/manisort -q -o MANIFEST; sh -c true)
1178
1179manicheck: FORCE
1180 perl Porting/manicheck
1181
1182# Extensions:
1183# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
1184# automatically get built. There should ordinarily be no need to change
1185# any of this part of makefile.
1186#
1187# The dummy dependency is a place holder in case $(dynamic_ext) or
1188# $(static_ext) is empty.
1189#
1190# DynaLoader may be needed for extensions that use Makefile.PL.
1191
1192$(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext)
1193 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1194
1195d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL)
1196 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1197
1198s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE
1199 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS)
1200
1201n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE
1202 $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
1203!NO!SUBS!
1204
1205$spitshell >>$Makefile <<EOF
1206$extra_dep
1207EOF
1208
1209$spitshell >>$Makefile <<'!NO!SUBS!'
1210
1211.PHONY: printconfig
1212printconfig:
1213 @eval `$(RUN_PERL) -V:$(CONFIGVAR)`; echo $$$(CONFIGVAR)
1214
1215.PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
1216 realclean _realcleaner clobber _clobber \
1217 distclean veryclean _verycleaner
1218
1219clean: _tidy _mopup
1220
1221realclean: _realcleaner _mopup
1222 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
1223
1224_clobber:
1225 -@rm -f Cross/run-* Cross/to-* Cross/from-* Cross/mkdir
1226 -rm -rf host
1227 rm -f t/test_state
1228 rm -f config.sh cppstdin Policy.sh extras.lst
1229
1230clobber: _realcleaner _mopup _clobber
1231
1232distclean: clobber
1233
1234# Like distclean but also removes emacs backups and *.orig.
1235veryclean: _verycleaner _mopup _clobber
1236 -@rm -f Obsolete Wanted
1237
1238# Do not 'make _mopup' directly.
1239_mopup:
1240 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c perlmini.c generate_uudmap$(EXE_EXT) $(generated_headers)
1241 -rmdir .depending
1242 -@test -f extra.pods && rm -f `cat extra.pods`
1243 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
1244 -rm -f perl.exp ext.libs $(generated_pods) uni.data opmini.o perlmini.o pod/roffitall
1245 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1246 -rm -f *perl.xok
1247 -rm -f cygwin.c libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1248 -rm -f $(PERL_EXE) $(MINIPERL_EXE) $(LIBPERL) libperl.* microperl
1249 -rm -f config.arch config.over $(DTRACE_H)
1250
1251# Do not 'make _tidy' directly.
1252_tidy:
1253 -cd pod; $(LDLIBPTH) $(MAKE) clean
1254 -cd utils; $(LDLIBPTH) $(MAKE) clean
1255 -rm -f lib/Config_git.pl git_version.h
1256 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1257 $(MINIPERL) make_ext.pl --target=clean $$x MAKE=$(MAKE) ; \
1258 done
1259
1260_cleaner1:
1261 -cd os2; rm -f Makefile
1262 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
1263 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
1264 -@if test -f $(MINIPERL_EXE) ; then \
1265 for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
1266 $(MINIPERL) make_ext.pl --target=$(CLEAN) $$x MAKE=$(MAKE) ; \
1267 done ; \
1268 else \
1269 sh $(CLEAN).sh ; \
1270 fi
1271 rm -f realclean.sh veryclean.sh
1272 -rm -f `grep -v ^# mkppport.lst | grep . | sed -e 's/$$/\/ppport.h/'`
1273
1274# Dear POSIX, thanks for making the default to xargs to be
1275# run once if nothhing is passed in. It is such a great help.
1276
1277# Some systems do not support "?", so keep these files separate.
1278_cleaner2:
1279 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
1280 rm -f core *perl.core t/core t/*perl.core core.* t/core.*
1281 rm -f t/$(PERL_EXE) t/rantests
1282 rm -rf t/tmp*
1283 rm -rf $(addedbyconf)
1284 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile
1285 rm -f $(private)
1286 rm -rf $(unidatafiles) $(unidatadirs)
1287 rm -rf lib/auto
1288 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1289 rm -f h2ph.man pstruct
1290 rm -rf .config
1291 rm -f preload
1292 rm -f pod2htmd.tmp
1293 rm -rf pod/perlfunc pod/perlipc
1294 -rmdir ext/B/lib
1295 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1296 -rmdir lib/version lib/threads lib/encoding lib/autodie/exception
1297 -rmdir lib/autodie/Scope lib/autodie lib/XS lib/Win32API lib/VMS
1298 -rmdir lib/Unicode/Collate/Locale lib/Unicode/Collate/CJK
1299 -rmdir lib/Unicode/Collate lib/Tie/Hash lib/Thread lib/Text
1300 -rmdir lib/Test/Builder/Tester lib/Test/Builder lib/Test lib/Term
1301 -rmdir lib/TAP/Parser/YAMLish lib/TAP/Parser/SourceHandler
1302 -rmdir lib/TAP/Parser/Scheduler lib/TAP/Parser/Result
1303 -rmdir lib/TAP/Parser/Iterator lib/TAP/Parser lib/TAP/Harness
1304 -rmdir lib/TAP/Formatter/File lib/TAP/Formatter/Console
1305 -rmdir lib/TAP/Formatter lib/TAP lib/Sys/Syslog lib/Sys lib/Search
1306 -rmdir lib/Scalar lib/Pod/Text lib/Pod/Simple lib/Pod/Perldoc
1307 -rmdir lib/PerlIO/via lib/PerlIO lib/Perl lib/Parse/CPAN lib/Parse
1308 -rmdir lib/Params lib/Net/FTP lib/Module/Load lib/Module/CoreList
1309 -rmdir lib/Module lib/Memoize lib/Math/BigInt lib/Math/BigFloat
1310 -rmdir lib/Math lib/MIME lib/Locale/Maketext lib/Locale/Codes
1311 -rmdir lib/Locale lib/List/Util lib/List lib/JSON/PP lib/JSON lib/IPC
1312 -rmdir lib/IO/Uncompress/Adapter lib/IO/Uncompress lib/IO/Socket
1313 -rmdir lib/IO/Compress/Zlib lib/IO/Compress/Zip lib/IO/Compress/Gzip
1314 -rmdir lib/IO/Compress/Base lib/IO/Compress/Adapter lib/IO/Compress
1315 -rmdir lib/IO lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash
1316 -rmdir lib/HTTP lib/Filter/Util lib/Filter lib/File/Spec
1317 -rmdir lib/ExtUtils/Typemaps lib/ExtUtils/ParseXS
1318 -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1319 -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1320 -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1321 -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1322 -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1323 -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1324 -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1325 -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Meta
1326 -rmdir lib/CPAN/LWP lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP
1327 -rmdir lib/CPAN/Exception lib/CPAN/API lib/CPAN lib/Attribute
1328 -rmdir lib/Archive/Tar lib/Archive lib/App/Prove/State/Result
1329 -rmdir lib/App/Prove/State lib/App/Prove lib/App
1330
1331_realcleaner:
1332 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1333 @$(LDLIBPTH) $(MAKE) _cleaner2
1334
1335_verycleaner:
1336 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1337 @$(LDLIBPTH) $(MAKE) _cleaner2
1338 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1339
1340.PHONY: lint
1341lint: $(c)
1342 rm -f *.ln
1343 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1344
1345.PHONY: splint
1346splint: $(c)
1347 splint $(splintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(splintfiles)
1348
1349# Need to unset during recursion to go out of loop.
1350# The README below ensures that the dependency list is never empty and
1351# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1352
1353MAKEDEPEND = Makefile makedepend
1354
1355$(FIRSTMAKEFILE): README $(MAKEDEPEND)
1356 $(MAKE) depend MAKEDEPEND=
1357!NO!SUBS!
1358
1359for f in $SH; do
1360 file=`SH_to_target $f`
1361 $spitshell >>$Makefile <<!GROK!THIS!
1362
1363$file: $f config.sh
1364 \$(SHELL) $f
1365!GROK!THIS!
1366done
1367
1368$spitshell >>$Makefile <<'!NO!SUBS!'
1369
1370.PHONY: depend
1371depend: makedepend
1372 sh ./makedepend MAKE=$(MAKE) cflags
1373
1374.PHONY: test check test_prep test_prep_nodll test_prep_pre \
1375 test_prep_reonly test_tty test-tty test_notty test-notty \
1376 test_harness test_harness_notty minitest test-reonly _test
1377
1378_test:
1379 echo >&2 The _test target is deprecated. Please upgrade your smoker
1380 $(RUN_TESTS) choose
1381
1382# Cannot delegate rebuilding of t/perl to make
1383# to allow interlaced test and minitest
1384
1385# Architecture-neutral stuff:
1386
1387test_prep_pre: preplibrary utilities $(nonxs_ext)
1388!NO!SUBS!
1389
1390case "$targethost" in
1391'') $spitshell >>$Makefile <<'!NO!SUBS!'
1392test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1393 $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods)
1394 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1395
1396!NO!SUBS!
1397;;
1398*) $spitshell >>$Makefile <<!GROK!THIS!
1399test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1400 \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1401 \$(generated_pods)
1402 $to libperl.*
1403 $to t/*
1404 $to lib/*
1405 $to TestInit.pm
1406 $to win32/FindExt.pm
1407 $to regen/*
1408 $to pod/*
1409 $to MANIFEST
1410 $to Porting/*
1411 $to cpan/*/t
1412 $to dist/*/t
1413 $to ext/*/t
1414 $to cpan/Term-Cap/test.pl
1415 $to cpan/Pod-Usage/*
1416 $to cpan/Pod-Parser/*
1417 $to cpan/IO-Compress/*
1418 $to cpan/HTTP-Tiny/lib/*
1419 $to cpan/Filter-Util-Call/filter-util.pl
1420 $to cpan/Digest-MD5/*
1421 $to cpan/Digest-SHA/*
1422 $to cpan/Test-Simple/*
1423 $to cpan/Pod-Parser/lib/*
1424 $to cpan/Test-Harness/*
1425 $to cpan/Scalar-List-Utils/*
1426 $to ext/IPC-Open3/*
1427 $to ext/Tie-Memoize/*
1428 $to ext/POSIX/*
1429 $to dist/IO/*
1430# --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1431 $to config_h.SH
1432 $to perl.h
1433 $to cflags
1434 $to *.h
1435# --- For t/TEST
1436 $to config.sh
1437# --- For lib/diagnostics.t with -Duseshrplib
1438 $to \$(PERL_EXE)
1439 cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1440 $to t/\$(PERL_EXE)
1441
1442!GROK!THIS!
1443;;
1444esac
1445
1446$spitshell >>$Makefile <<'!NO!SUBS!'
1447test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1448 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1449 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1450!NO!SUBS!
1451
1452case "$targethost" in
1453'') $spitshell >>$Makefile <<'!NO!SUBS!'
1454
1455test check: test_prep
1456 $(RUN_TESTS) choose
1457
1458!NO!SUBS!
1459;;
1460*) $spitshell >>$Makefile <<!GROK!THIS!
1461
1462test check: test_prep
1463 $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1464
1465!GROK!THIS!
1466;;
1467esac
1468
1469$spitshell >>$Makefile <<'!NO!SUBS!'
1470test_tty test-tty: test_prep
1471 $(RUN_TESTS) tty
1472
1473test_notty test-notty: test_prep
1474 $(RUN_TESTS) no-tty
1475
1476!NO!SUBS!
1477
1478case "${osname}${osvers}" in
1479linux*|darwin*)
1480 $spitshell >>$Makefile <<'!NO!SUBS!'
1481# Targets for valgrind testing:
1482
1483test.valgrind check.valgrind: test_prep
1484 @echo "Checking usemymalloc='n' in config.sh..."
1485 @grep "^usemymalloc=" config.sh
1486 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1487 @echo "And of course you have to have valgrind..."
1488 $(VALGRIND) $(VG_TEST) || exit 1
1489 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1490!NO!SUBS!
1491 ;;
1492esac
1493
1494$spitshell >>$Makefile <<'!NO!SUBS!'
1495
1496# Can't depend on lib/Config.pm because that might be where miniperl
1497# is crashing.
1498minitest: $(MINIPERL_EXE)
1499 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1500 @echo " "
1501 @echo "You may see some irrelevant test failures if you have been unable"
1502 @echo "to build lib/Config.pm, or the Unicode data files."
1503 @echo " "
1504 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \
1505 && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t </dev/tty
1506
1507# Test via harness
1508
1509test_harness test-harness: test_prep
1510 TESTFILE=harness $(RUN_TESTS) choose
1511
1512test_harness_notty: test_prep
1513 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1514
1515test_reonly test-reonly: test_prep_reonly
1516 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1517
1518
1519# Porting tests (well-formedness of pod, manifest, etc)
1520
1521test_porting test-porting: test_prep
1522 cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1523
1524# Handy way to run perlbug -ok without having to install and run the
1525# installed perlbug. We don't re-run the tests here - we trust the user.
1526# Please *don't* use this unless all tests pass.
1527# If you want to report test failures, use "make nok" instead.
1528
1529.PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1530
1531ok: utilities
1532 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1533
1534okfile: utilities
1535 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1536
1537oknack: utilities
1538 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1539
1540okfilenack: utilities
1541 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1542
1543nok: utilities
1544 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1545
1546nokfile: utilities
1547 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1548
1549noknack: utilities
1550 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1551
1552nokfilenack: utilities
1553 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1554
1555.PHONY: clist hlist
1556
1557clist: $(c)
1558 echo $(c) | tr ' ' $(TRNL) >.clist
1559
1560hlist: $(h)
1561 echo $(h) | tr ' ' $(TRNL) >.hlist
1562
1563.PHONY: distcheck
1564distcheck: FORCE
1565 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1566
1567.PHONY: ctags
1568
1569ctags:
1570 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1571
1572# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1573# If this runs make out of memory, delete /usr/include lines.
1574!NO!SUBS!
1575
1576$eunicefix Makefile
1577$rm -f $firstmakefile
1578
1579# Now do any special processing required before building.
1580
1581case "$ebcdic" in
1582define)
1583 xxx=''
1584 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1585case "$osname" in
1586os390|posix-bc)
1587 ;;
1588*)
1589 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1590 ;;
1591esac
1592 case "$xxx" in
1593 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1594 esac
1595 ;;
1596esac
1597
1598# ex: set ts=8 sts=4 sw=4 noet: