ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/vendor/perl/5.26.0/Makefile.SH
Revision: 9589
Committed: Sun Oct 1 18:18:27 2017 UTC (6 years, 7 months ago) by laffer1
Content type: application/x-sh
File size: 52548 byte(s)
Log Message:
tag

File Contents

# Content
1 #!/bin/sh
2
3 # quote() - Creates a shell literal
4 # Usage: echo "...` quote "..." `..."
5 quote() {
6 case "$1" in
7 '') echo "''" ;;
8 *) echo "$1" | sed 's/\([^a-zA-Z0-9.:_/-]\)/\\\1/g' ;;
9 esac
10 }
11
12 case $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 ;;
21 esac
22
23 case "$osname" in
24 amigaos)
25 devtty=CONSOLE:
26 ;;
27 *)
28 devtty=/dev/tty
29 ;;
30 esac
31
32 Makefile=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.
36 case "$0" in
37 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
38 esac
39
40 pwd="`pwd`"
41 linklibperl='$(LIBPERL)'
42 linklibperl_nonshr=''
43 shrpldflags='$(LDDLFLAGS)'
44 ldlibpth=''
45 DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
46 DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
47 case "$useshrplib" in
48 true)
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
157 lib=$1
158 shift
159 test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
160 exec "$@"
161 EOT
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 ;;
175 esac
176
177 : is Cwd static or dynamic
178 static_cwd='define'
179 list_util_dep='$(PERL_EXE)'
180 for 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
185 done
186
187 : Prepare dependency lists for Makefile.
188 dynamic_list=' '
189 dynamic_ext_re="lib/auto/re/re.$dlext"
190 extra_dep='
191 ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod
192 cpan/IO-Compress/pm_to_blib: dist/lib/pm_to_blib
193 '
194 for 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
207 done
208
209 static_list=' '
210 for 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
221 done
222
223 nonxs_list=' '
224 for 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
231 done
232
233 dtrace_h=''
234
235 # three object files generated by 'dtrace -G' when dtrace is enabled
236 dtrace_perllib_o=''
237 dtrace_mini_o=''
238 dtrace_main_o=''
239
240 case "$usedtrace" in
241 define|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 ;;
251 esac
252
253 echo "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
261 CC = $cc
262 LD = $ld
263
264 LDFLAGS = $ldflags
265 CLDFLAGS = $ldflags
266
267 mallocsrc = $mallocsrc
268 mallocobj = $mallocobj
269 LNS = $lns
270 # NOTE: some systems don't grok "cp -f". XXX Configure test needed?
271 CPS = $cp
272 RMS = rm -f
273 ranlib = $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.
279 bin = $installbin
280 scriptdir = $scriptdir
281 shrpdir = $archlibexp/CORE
282 privlib = $installprivlib
283 man1dir = $man1dir
284 man1ext = $man1ext
285 man3dir = $man3dir
286 man3ext = $man3ext
287
288 # The following are used to build and install shared libraries for
289 # dynamic loading.
290 LDDLFLAGS = $lddlflags
291 SHRPLDFLAGS = $shrpldflags
292 CCDLFLAGS = $ccdlflags
293 DLSUFFIX = .$dlext
294 PLDLFLAGS = $pldlflags
295 LIBPERL = $libperl
296 LLIBPERL= $linklibperl
297 LLIBPERL_NONSHR= $linklibperl_nonshr
298 SHRPENV = $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).
305 STATIC_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.
309 LDLIBPTH = $ldlibpth
310
311 # Sometimes running an executable is an adventure.
312 RUN =
313
314 # When cross-compiling we want to use a (mini)perl built for the host, not the target
315 HOST_PERL = $hostperl
316 HOST_GENERATE = $hostgenerate
317 SYSTEM_PERL = $perl
318
319 # These variables may need to be manually set for non-Unix systems.
320 AR = $full_ar
321 HOST_EXE_EXT = $_exe
322 EXE_EXT = $_exe
323 LIB_EXT = $_a
324 OBJ_EXT = $_o
325 PATH_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)
329 MINIPERL_EXE = miniperl\$(EXE_EXT)
330 MINIPERL = \$(LDLIBPTH) ./miniperl\$(EXE_EXT) -Ilib
331
332 # Macros to invoke sort the MANIFEST during build
333 MANIFEST_SRT = MANIFEST.srt
334
335 !GROK!THIS!
336
337 case "$usecrosscompile$perl" in
338 define?*)
339 $spitshell >>$Makefile <<!GROK!THIS!
340 # Macros to invoke a copy of our fully operational perl during the build.
341 PERL_EXE = perl\$(EXE_EXT)
342 RUN_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.
348 PERL_EXE = perl\$(EXE_EXT)
349 RUN_PERL = \$(LDLIBPTH) \$(RUN) ./perl\$(EXE_EXT) -Ilib -I.
350 !GROK!THIS!
351 ;;
352 esac
353
354 $spitshell >>$Makefile <<!GROK!THIS!
355 # Macros to run our tests
356 RUN_TESTS = \$(LDLIBPTH) ./runtests
357
358 dynamic_ext = $dynamic_list
359 dynamic_ext_re = $dynamic_ext_re
360 static_ext = $static_list
361 nonxs_ext = $nonxs_list
362 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
363 DYNALOADER = DynaLoader\$(OBJ_EXT)
364
365 libs = $perllibs $cryptlib
366
367 public = \$(PERL_EXE) utilities
368
369 shellflags = $shellflags
370
371 # The /dev/tty or the moral equivalent.
372 devtty = $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
382 case "${osname}" in
383 linux*|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.
387 VALGRIND ?= valgrind
388 VG_TEST ?= ./perl -e 1 2>/dev/null
389
390 !GROK!THIS!
391 ;;
392 esac
393
394 case "$dtracexnolibs" in
395 define) xnolibs=-xnolibs ;;
396 *) xnolibs= ;;
397 esac
398
399 $spitshell >>$Makefile <<!GROK!THIS!
400 DTRACE = $dtrace $xnolibs
401 DTRACE_H = $dtrace_h
402
403 DTRACE_PERLLIB_O = $dtrace_perllib_o # "dtrace -G" output for perllib_objs
404 DTRACE_MINI_O = $dtrace_mini_o # "dtrace -G" output for common and mini
405 DTRACE_MAIN_O = $dtrace_main_o # "dtrace -G" output for perlmain.o
406
407 FIRSTMAKEFILE = $firstmakefile
408
409 # Any special object files needed by this architecture, e.g. os2/os2.obj
410 ARCHOBJS = $archobjs
411
412 .SUFFIXES: .c \$(OBJ_EXT) .i .s
413
414 # grrr
415 SHELL = $sh
416
417 # how to tr(anslate) newlines
418 TRNL = '$trnl'
419
420 OPTIMIZE = $optimize
421
422 EXTRAS = $extras
423
424 INSTALLPREFIXEXP = $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
432 case "${osname}:${osvers}" in
433 darwin:*)
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
441 LC_ALL=C
442 LANG=C
443 LANGUAGE=C
444 EOF
445 ;;
446 esac
447
448 ## In the following dollars and backticks do not need the extra backslash.
449 $spitshell >>$Makefile <<'!NO!SUBS!'
450
451 CCCMD = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@
452
453 CCCMDSRC = sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<
454
455 CONFIGPM_FROM_CONFIG_SH = lib/Config.pm lib/Config_heavy.pl
456 CONFIGPM = $(CONFIGPM_FROM_CONFIG_SH) lib/Config_git.pl
457
458 CONFIGPOD = lib/Config.pod
459
460 CONFIGH = config.h
461 !NO!SUBS!
462
463 SH_to_target() {
464 echo $@ | sed -e s/\\\.SH//g -e s/_/./g
465 }
466
467 SH='Makefile.SH cflags.SH config_h.SH makedepend.SH myconfig.SH runtests.SH pod/Makefile.SH'
468 shextract=`SH_to_target $SH`
469
470 ## In the following dollars and backticks do not need the extra backslash.
471 $spitshell >>$Makefile <<!GROK!THIS!
472
473 private = preplibrary \$(CONFIGPM) \$(CONFIGPOD) git_version.h lib/buildcustomize.pl
474
475 # Files to be built with variable substitution before miniperl
476 # is available.
477 sh = $SH
478
479 shextract = $shextract
480 !GROK!THIS!
481
482 ## In the following dollars and backticks do not need the extra backslash.
483 $spitshell >>$Makefile <<'!NO!SUBS!'
484
485 addedbyconf = UU $(shextract)
486
487 # Unicode data files generated by mktables
488 unidatafiles = 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
494 unidatadirs = lib/unicore/To lib/unicore/lib
495
496 h1 = EXTERN.h INTERN.h XSUB.h av.h $(CONFIGH) cop.h cv.h dosish.h
497 h2 = embed.h form.h gv.h handy.h hv.h hv_func.h keywords.h mg.h op.h opcode.h
498 h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
499 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
500 h5 = utf8.h warnings.h mydtrace.h op_reg_common.h l1_char_class_tab.h
501 h6 = charclass_invlists.h
502 h = $(h1) $(h2) $(h3) $(h4) $(h5) $(h6)
503
504 c1 = 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
505 c2 = perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c sv.c
506 c3 = taint.c toke.c util.c deb.c run.c universal.c pad.c globals.c keywords.c
507 c4 = perlio.c perlapi.c numeric.c mathoms.c locale.c pp_pack.c pp_sort.c caretx.c dquote.c time64.c
508 c5 = $(mallocsrc)
509
510 c = $(c1) $(c2) $(c3) $(c4) $(c5) miniperlmain.c opmini.c perlmini.c
511
512 obj1 = $(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)
513 obj2 = 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)
514 obj3 = 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
520 common_objs = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
521 mini_only_objs = opmini$(OBJ_EXT) perlmini$(OBJ_EXT)
522 main_only_objs = op$(OBJ_EXT) perl$(OBJ_EXT)
523
524 miniperl_objs_nodt = $(mini_only_objs) $(common_objs) miniperlmain$(OBJ_EXT)
525 perllib_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
538 case "$usedtrace:$dtraceobject" in
539 define:define)
540 $spitshell >>$Makefile <<'!NO!SUBS!'
541
542 miniperl_dtrace_objs = $(miniperl_objs_nodt:%=mpdtrace/%)
543 perllib_dtrace_objs = $(perllib_objs_nodt:%=libpdtrace/%)
544 perlmain_dtrace_objs = maindtrace/perlmain$(OBJ_EXT)
545
546 miniperl_objs = $(miniperl_dtrace_objs) $(DTRACE_MINI_O)
547 perllib_objs = $(perllib_dtrace_objs) $(DTRACE_PERLLIB_O)
548 perlmain_objs = $(perlmain_dtrace_objs) $(DTRACE_MAIN_O)
549
550 miniperl_dep = $(DTRACE_MINI_O)
551 perllib_dep = $(DTRACE_PERLLIB_O)
552 perlmain_dep = $(DTRACE_MAIN_O)
553
554 !NO!SUBS!
555 ;;
556 *)
557 $spitshell >>$Makefile <<'!NO!SUBS!'
558
559 miniperl_objs = $(miniperl_objs_nodt) $(DTRACE_MINI_O)
560 perllib_objs = $(perllib_objs_nodt) $(DTRACE_PERLLIB_O)
561 perlmain_objs = perlmain$(OBJ_EXT) $(DTRACE_MAIN_O)
562
563 miniperl_dep = $(miniperl_objs)
564 perllib_dep = $(perllib_objs)
565 perlmain_dep = $(perlmain_objs)
566
567 !NO!SUBS!
568 ;;
569 esac
570
571 $spitshell >>$Makefile <<'!NO!SUBS!'
572
573 perltoc_pod_prereqs = extra.pods pod/perl5260delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
574 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
575 generated_headers = uudmap.h bitcount.h mg_data.h
576
577 lintflags = \
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
621 all: $(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.
634 git_version.h: lib/Config_git.pl
635
636 lib/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
640 perl$(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.
647 case "$usedl$static_cwd" in
648 defineundef)
649 util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE'
650 ;;
651 definedefine)
652 util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
653 ;;
654 *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE'
655 ;;
656 esac
657
658 $spitshell >>$Makefile <<!GROK!THIS!
659 utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL
660 \$(MINIPERL) utils/Makefile.PL
661
662 utilities: 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
675 FORCE:
676 @sh -c true
677 !NO!SUBS!
678
679 for 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!
706 done
707
708 $spitshell >>$Makefile <<'!NO!SUBS!'
709
710 globals$(OBJ_EXT): $(generated_headers)
711
712 uudmap.h mg_data.h: bitcount.h
713
714 generate_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.
722 case "$hostgenerate" in
723 ''|'undef')
724 $spitshell >>$Makefile <<!GROK!THIS!
725 bitcount.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!'
734 generate_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!'
741 bitcount.h: generate_uudmap$(HOST_EXE_EXT)
742 ./generate_uudmap$(HOST_EXE_EXT) $(generated_headers)
743
744 generate_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 ;;
750 esac
751
752 case "$osname" in
753 amigaos*)
754 $spitshell >>$Makefile <<'!NO!SUBS!'
755 perlmain.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.
761 ext.libs: $(static_ext)
762 -@test -f ext.libs || touch ext.libs
763
764 !NO!SUBS!
765 ;;
766 *)
767 $spitshell >>$Makefile <<'!NO!SUBS!'
768 perlmain.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.
774 ext.libs: $(static_ext)
775 -@test -f ext.libs || touch ext.libs
776
777 !NO!SUBS!
778 ;;
779 esac
780
781 # How to build libperl. This is still rather convoluted.
782 # Load up custom Makefile.SH fragment for shared loading and executables:
783 case "$osname" in
784 *)
785 Makefile_s="$osname/Makefile.SHs"
786 ;;
787 esac
788
789 case "$osname" in
790 aix)
791 $spitshell >>$Makefile <<!GROK!THIS!
792 LIBS = $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)
796 CCDLFLAGS = `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
803 LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
804 MINIPERL_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
814 MINIPERLEXP = $(MINIPERL_NONSHR)
815
816 LIBPERLEXPORT = perl.exp
817
818 !NO!SUBS!
819
820 ;;
821 *)
822 $spitshell >>$Makefile <<'!NO!SUBS!'
823 MINIPERLEXP = $(MINIPERL_EXE)
824
825 PERLEXPORT = perl.exp
826
827 !NO!SUBS!
828 ;;
829 esac
830 $spitshell >>$Makefile <<'!NO!SUBS!'
831 perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH)
832 ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp
833
834 !NO!SUBS!
835 ;;
836 os2)
837 $spitshell >>$Makefile <<'!NO!SUBS!'
838 MINIPERLEXP = miniperl
839
840 perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map
841 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def
842
843 !NO!SUBS!
844 ;;
845 cygwin)
846 $spitshell >>$Makefile <<'!NO!SUBS!'
847 cygwin.c: cygwin/cygwin.c
848 $(LNS) cygwin/cygwin.c
849
850 LIBPERL_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 ;;
858 esac
859
860 if test -s $Makefile_s ; then
861 . $Makefile_s
862 $spitshell >>$Makefile <<!GROK!THIS!
863
864 Makefile: $Makefile_s
865 !GROK!THIS!
866 else
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
876 mydtrace.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!'
962 lib/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!'
972 lib/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!'
980 lib/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!
993 NAMESPACEFLAGS = -force_flat_namespace
994 !NO!SUBS!
995 ;;
996 esac
997 ;;
998 esac
999 $spitshell >>$Makefile <<'!NO!SUBS!'
1000 lib/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!
1011 lib/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!'
1020 lib/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
1061 microperl:
1062 $(MAKE) -f Makefile.micro
1063
1064 !NO!SUBS!
1065
1066 fi
1067
1068 # Some environment have no system(), which mkpport uses.
1069 # Let's try running the commands with shell.
1070 case "${osname}" in
1071 catamount)
1072 $spitshell >>$Makefile <<!GROK!THIS!
1073 .PHONY: makeppport
1074 makeppport: \$(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
1084 makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext)
1085 $(MINIPERL) mkppport
1086
1087 !NO!SUBS!
1088 ;;
1089 esac
1090
1091 $spitshell >>$Makefile <<'!NO!SUBS!'
1092
1093 .PHONY: preplibrary
1094 preplibrary: $(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
1101 unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data
1102
1103 uni.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.
1112 pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc
1113 $(RUN_PERL) -f pod/buildtoc -q
1114
1115 pod/perlapi.pod: pod/perlintern.pod
1116
1117 pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
1118 $(MINIPERL) autodoc.pl
1119
1120 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
1121 $(MINIPERL) pod/perlmodlib.PL -q
1122
1123 pod/perl5260delta.pod: pod/perldelta.pod
1124 $(RMS) pod/perl5260delta.pod
1125 $(LNS) perldelta.pod pod/perl5260delta.pod
1126
1127 extra.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
1136 extras.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
1139 extras.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
1142 extras.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
1149 INSTALL_DEPENDENCE = all
1150
1151 no_install no-install: install-notify
1152
1153 install: install-all
1154 !NO!SUBS!
1155
1156
1157 for 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
1163 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1164 \$(HOST_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1165 \$(HOST_PERL) installman --destdir=\$(DESTDIR) $flags
1166 EOT
1167 else
1168 $spitshell >>$Makefile <<EOT
1169
1170 install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman
1171 \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS)
1172 \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags
1173 EOT
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
1177 done
1178
1179 if test "X$hostperl" != X; then
1180 $spitshell >>$Makefile <<'!NO!SUBS!'
1181 install.perl: $(INSTALL_DEPENDENCE) installperl
1182 $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
1183 -@test ! -s extras.lst || $(MAKE) extras.install
1184
1185 install.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.
1190 install.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!
1201 else
1202 $spitshell >>$Makefile <<'!NO!SUBS!'
1203 install.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
1207 install.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.
1212 install.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!
1223 fi
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
1234 run_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
1238 regen_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.
1244 perly.c: perly.y
1245 -@sh -c true
1246
1247 perly.h: perly.y
1248 -@sh -c true
1249
1250 SYM = globvar.sym perlio.sym
1251
1252 SYMH = perlvars.h intrpvar.h
1253
1254 CHMOD_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
1269 AUTOGEN_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
1275 regen: FORCE
1276 -perl regen.pl
1277 -perl regen/uconfig_h.pl
1278
1279 regen_headers regen-headers: FORCE
1280 -perl regen.pl -v
1281 -perl regen/uconfig_h.pl -v
1282
1283 regen_meta regen-meta: META.yml META.json
1284
1285 META.yml: FORCE
1286 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -y
1287
1288 META.json: FORCE
1289 PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(RUN_PERL) Porting/makemeta -j
1290
1291
1292 regen_all regen-all: regen regen_meta
1293
1294 .PHONY: manisort manicheck
1295
1296 manisort: FORCE
1297 @perl Porting/manisort -q || (echo "WARNING: re-sorting MANIFEST"; \
1298 perl Porting/manisort -q -o MANIFEST; sh -c true)
1299
1300 manicheck: 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
1316 d_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
1319 s_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
1322 n_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
1328 EOF
1329
1330 $spitshell >>$Makefile <<'!NO!SUBS!'
1331
1332 .PHONY: printconfig
1333 printconfig:
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
1340 clean: realclean
1341
1342 realclean: _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
1352 clobber: _realcleaner _mopup _clobber
1353
1354 distclean: clobber
1355
1356 # Like distclean but also removes emacs backups and *.orig.
1357 veryclean: _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/Event/TAP
1416 -rmdir lib/Test2/Event lib/Test2/API lib/Test2 lib/Test/use
1417 -rmdir lib/Test/Tester lib/Test/Builder/Tester lib/Test/Builder/IO
1418 -rmdir lib/Test/Builder lib/Test lib/Term lib/TAP/Parser/YAMLish
1419 -rmdir lib/TAP/Parser/SourceHandler lib/TAP/Parser/Scheduler
1420 -rmdir lib/TAP/Parser/Result lib/TAP/Parser/Iterator lib/TAP/Parser
1421 -rmdir lib/TAP/Harness lib/TAP/Formatter/File
1422 -rmdir lib/TAP/Formatter/Console lib/TAP/Formatter lib/TAP
1423 -rmdir lib/Sys/Syslog lib/Sys lib/Sub lib/Search lib/Scalar
1424 -rmdir lib/Pod/Text lib/Pod/Simple lib/Pod/Perldoc lib/PerlIO/via
1425 -rmdir lib/PerlIO lib/Perl lib/Parse/CPAN lib/Parse lib/Params
1426 -rmdir lib/Net/FTP lib/Module/Load lib/Module/CoreList lib/Module
1427 -rmdir lib/Memoize lib/Math/BigInt lib/Math/BigFloat lib/Math lib/MIME
1428 -rmdir lib/Locale/Maketext lib/Locale/Codes lib/Locale lib/List/Util
1429 -rmdir lib/List lib/JSON/PP lib/JSON lib/IPC lib/IO/Uncompress/Adapter
1430 -rmdir lib/IO/Uncompress lib/IO/Socket lib/IO/Compress/Zlib
1431 -rmdir lib/IO/Compress/Zip lib/IO/Compress/Gzip lib/IO/Compress/Base
1432 -rmdir lib/IO/Compress/Adapter lib/IO/Compress lib/IO
1433 -rmdir lib/I18N/LangTags lib/I18N lib/Hash/Util lib/Hash lib/HTTP
1434 -rmdir lib/Filter/Util lib/Filter lib/File/Spec lib/ExtUtils/Typemaps
1435 -rmdir lib/ExtUtils/ParseXS lib/ExtUtils/MakeMaker/version
1436 -rmdir lib/ExtUtils/MakeMaker lib/ExtUtils/Liblist
1437 -rmdir lib/ExtUtils/Constant lib/ExtUtils/Command
1438 -rmdir lib/ExtUtils/CBuilder/Platform/Windows
1439 -rmdir lib/ExtUtils/CBuilder/Platform lib/ExtUtils/CBuilder
1440 -rmdir lib/Exporter lib/Encode/Unicode lib/Encode/MIME/Header
1441 -rmdir lib/Encode/MIME lib/Encode/KR lib/Encode/JP lib/Encode/CN
1442 -rmdir lib/Encode lib/Digest lib/Devel lib/Data lib/Config/Perl
1443 -rmdir lib/Compress/Raw lib/Compress lib/Carp lib/CPAN/Plugin
1444 -rmdir lib/CPAN/Meta/History lib/CPAN/Meta lib/CPAN/LWP
1445 -rmdir lib/CPAN/Kwalify lib/CPAN/HTTP lib/CPAN/FTP lib/CPAN/Exception
1446 -rmdir lib/CPAN/API lib/CPAN lib/Attribute lib/Archive/Tar lib/Archive
1447 -rmdir lib/App/Prove/State/Result lib/App/Prove/State lib/App/Prove
1448 -rmdir lib/App lib/Amiga
1449
1450 _realcleaner:
1451 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=distclean
1452 @$(LDLIBPTH) $(MAKE) _cleaner2
1453
1454 _verycleaner:
1455 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1456 @$(LDLIBPTH) $(MAKE) _cleaner2
1457 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1458
1459 .PHONY: lint
1460 lint: $(c)
1461 rm -f *.ln
1462 lint $(lintflags) -DPERL_CORE -D_REENTRANT -DDEBUGGING -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(c)
1463
1464 cscopeflags = -Rb # Recursive, build-only.
1465
1466 .PHONY: cscope
1467 # To query the cscope.out "cscope -dLnsymbol" where n = 0 means uses,
1468 # 1 = definitions, 2 = callees, 3 = callers, for example
1469 # "cscope -dL1Perl_mg_set" or run cscope interactively (no arguments).
1470 cscope.out cscope: $(c) $(h)
1471 cscope $(cscopeflags)
1472
1473 # Need to unset during recursion to go out of loop.
1474 # The README below ensures that the dependency list is never empty and
1475 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1476
1477 MAKEDEPEND = Makefile makedepend
1478
1479 $(FIRSTMAKEFILE): README $(MAKEDEPEND)
1480 $(MAKE) depend MAKEDEPEND=
1481 !NO!SUBS!
1482
1483 for f in $SH; do
1484 file=`SH_to_target $f`
1485 $spitshell >>$Makefile <<!GROK!THIS!
1486
1487 $file: $f config.sh
1488 \$(SHELL) $f
1489 !GROK!THIS!
1490 done
1491
1492 $spitshell >>$Makefile <<'!NO!SUBS!'
1493
1494 .PHONY: depend
1495 depend: makedepend $(DTRACE_H) $(generated_headers)
1496 sh ./makedepend MAKE="$(MAKE)" cflags
1497
1498 .PHONY: test check test_prep test_prep_nodll test_prep_pre \
1499 test_prep_reonly test_tty test-tty test_notty test-notty \
1500 test_harness test_harness_notty minitest test-reonly _test
1501
1502 # The _test target is there just for Test::Smoke, which does a make test_prep
1503 # always before invoking this target, thus preventing checking again
1504 _test:
1505 $(RUN_TESTS) choose
1506
1507 # Cannot delegate rebuilding of t/perl to make
1508 # to allow interlaced test and minitest
1509
1510 # Architecture-neutral stuff:
1511
1512 test_prep_pre: preplibrary utilities $(nonxs_ext)
1513 !NO!SUBS!
1514
1515 case "$targethost" in
1516 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1517 test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \
1518 $(dynamic_ext) $(TEST_PERL_DLL) runtests $(generated_pods)
1519 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1520
1521 !NO!SUBS!
1522 ;;
1523 *) $spitshell >>$Makefile <<!GROK!THIS!
1524 test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \
1525 \$(dynamic_ext) \$(TEST_PERL_DLL) runtests \
1526 \$(generated_pods)
1527 $to libperl.*
1528 $to t/*
1529 $to lib/*
1530 $to TestInit.pm
1531 $to win32/FindExt.pm
1532 $to regen/*
1533 $to pod/*
1534 $to MANIFEST
1535 $to Porting/*
1536 $to cpan/*/t
1537 $to dist/*/t
1538 $to ext/*/t
1539 $to cpan/Archive-Tar/*
1540 $to cpan/Module-Metadata/*
1541 $to cpan/Term-Cap/test.pl
1542 $to cpan/Pod-Usage/*
1543 $to cpan/Pod-Parser/*
1544 $to cpan/IO-Compress/*
1545 $to cpan/HTTP-Tiny/lib/*
1546 $to cpan/Filter-Util-Call/filter-util.pl
1547 $to cpan/Digest-MD5/*
1548 $to cpan/Digest-SHA/*
1549 $to cpan/Test-Simple/*
1550 $to cpan/Pod-Parser/lib/*
1551 $to cpan/Test-Harness/*
1552 $to cpan/Scalar-List-Utils/*
1553 $to ext/IPC-Open3/*
1554 $to ext/Tie-Memoize/*
1555 $to ext/POSIX/*
1556 $to dist/IO/*
1557 # --- These three are needed by ExtUtils::MM_Unix to verify PERL_CORE
1558 $to config_h.SH
1559 $to perl.h
1560 $to cflags
1561 $to *.h
1562 # --- For t/porting/customized.t
1563 $to vutil.c
1564 $to vxs.inc
1565 # --- For t/TEST
1566 $to config.sh
1567 # --- For lib/diagnostics.t with -Duseshrplib
1568 $to \$(PERL_EXE)
1569 cd t && (rm -f \$(PERL_EXE); \$(LNS) ../\$(PERL_EXE) \$(PERL_EXE)) && cd ..
1570 $to t/\$(PERL_EXE)
1571
1572 !GROK!THIS!
1573 ;;
1574 esac
1575
1576 $spitshell >>$Makefile <<'!NO!SUBS!'
1577 test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL)
1578 $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE="$(MAKE)" LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic
1579 cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE))
1580 !NO!SUBS!
1581
1582 case "$targethost" in
1583 '') $spitshell >>$Makefile <<'!NO!SUBS!'
1584
1585 test check: test_prep
1586 $(RUN_TESTS) choose
1587
1588 !NO!SUBS!
1589 ;;
1590 *) $spitshell >>$Makefile <<!GROK!THIS!
1591
1592 test check: test_prep
1593 $run -cwd $targetdir/t -env "$targetenv LD_LIBRARY_PATH=$targetdir:$targetdir/lib:$targetdir/lib/auto:\$\$LD_LIBRARY_PATH" ./TEST
1594
1595 !GROK!THIS!
1596 ;;
1597 esac
1598
1599 $spitshell >>$Makefile <<'!NO!SUBS!'
1600 test_tty test-tty: test_prep
1601 $(RUN_TESTS) tty
1602
1603 test_notty test-notty: test_prep
1604 $(RUN_TESTS) no-tty
1605
1606 !NO!SUBS!
1607
1608 case "${osname}${osvers}" in
1609 linux*|darwin*)
1610 $spitshell >>$Makefile <<'!NO!SUBS!'
1611 # Targets for valgrind testing:
1612
1613 test.valgrind check.valgrind: test_prep
1614 @echo "Checking usemymalloc='n' in config.sh..."
1615 @grep "^usemymalloc=" config.sh
1616 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
1617 @echo "And of course you have to have valgrind..."
1618 $(VALGRIND) $(VG_TEST) || exit 1
1619 PERL_VALGRIND=1 VALGRIND='$(VALGRIND)' TESTFILE=harness $(RUN_TESTS) choose
1620 !NO!SUBS!
1621 ;;
1622 esac
1623
1624 $spitshell >>$Makefile <<'!NO!SUBS!'
1625
1626 # minitest can't depend on lib/Config.pm because that might be where miniperl
1627 # is crashing.
1628 minitest_prep:
1629 -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles)
1630 @echo " "
1631 @echo "You may see some irrelevant test failures if you have been unable"
1632 @echo "to build lib/Config.pm, or the Unicode data files."
1633 @echo " "
1634 - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE))
1635
1636 MINITEST_TESTS = base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t
1637
1638 minitest: $(MINIPERL_EXE) minitest_prep
1639 - cd t && $(RUN_PERL) TEST $(MINITEST_TESTS) <$(devtty)
1640
1641 minitest-notty minitest_notty: $(MINIPERL_EXE) minitest_prep
1642 - cd t && PERL_SKIP_TTY_TEST=1 $(RUN_PERL) TEST $(MINITEST_TESTS)
1643
1644 # Test via harness
1645
1646 test_harness test-harness: test_prep
1647 TESTFILE=harness $(RUN_TESTS) choose
1648
1649 test_harness_notty: test_prep
1650 HARNESS_NOTTY=1 TESTFILE=harness $(RUN_TESTS) choose
1651
1652 test_reonly test-reonly: test_prep_reonly
1653 TEST_ARGS='-re \bre\/' TESTFILE=harness $(RUN_TESTS) choose
1654
1655
1656 # Porting tests (well-formedness of pod, manifest, etc)
1657
1658 test_porting test-porting: test_prep
1659 cd t && $(RUN_PERL) harness porting/*.t ../lib/diagnostics.t
1660
1661 # Handy way to run perlbug -ok without having to install and run the
1662 # installed perlbug. We don't re-run the tests here - we trust the user.
1663 # Please *don't* use this unless all tests pass.
1664 # If you want to report test failures, use "make nok" instead.
1665
1666 .PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1667
1668 ok: utilities
1669 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)'
1670
1671 okfile: utilities
1672 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1673
1674 oknack: utilities
1675 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -A
1676
1677 okfilenack: utilities
1678 $(RUN_PERL) utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1679
1680 nok: utilities
1681 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)'
1682
1683 nokfile: utilities
1684 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1685
1686 noknack: utilities
1687 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -A
1688
1689 nokfilenack: utilities
1690 $(RUN_PERL) utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1691
1692 .PHONY: clist hlist
1693
1694 clist: $(c)
1695 echo $(c) | tr ' ' $(TRNL) >.clist
1696
1697 hlist: $(h)
1698 echo $(h) | tr ' ' $(TRNL) >.hlist
1699
1700 .PHONY: distcheck
1701 distcheck: FORCE
1702 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1703
1704 .PHONY: ctags
1705
1706 TAGS: $(c1) $(c2) $(c3) $(c4) $(c5) $(h)
1707 etags $(c1) $(c2) $(c3) $(c4) $(c5) $(h)
1708
1709 ctags:
1710 ctags -f Tags -N --totals --languages=c --langmap=c:+.h --exclude=opmini.c --exclude=perlmini.c *.c *.h
1711
1712 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1713 # If this runs make out of memory, delete /usr/include lines.
1714 !NO!SUBS!
1715
1716 $eunicefix Makefile
1717 $rm -f $firstmakefile
1718
1719 # Now do any special processing required before building.
1720
1721 case "$ebcdic" in
1722 define)
1723 xxx=''
1724 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1725 case "$osname" in
1726 os390|posix-bc)
1727 ;;
1728 *)
1729 echo "'$osname' is an EBCDIC system I don't know that well." >&4
1730 ;;
1731 esac
1732 case "$xxx" in
1733 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1734 esac
1735 ;;
1736 esac
1737
1738 # ex: set ts=8 sts=4 sw=4 noet: