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