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