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