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