No more late changes, dammit
[p5sagit/p5-mst-13.2.git] / Makefile.SH
CommitLineData
599a829f 1#! /bin/sh
a02608de 2case $PERL_CONFIG_SH in
2304df62 3'')
66b99216 4 if test -f config.sh
5 then TOP=.
2304df62 6 else
7 echo "Can't find config.sh."; exit 1
8 fi
9 . $TOP/config.sh
10 ;;
11esac
761ee4e8 12
13# H.Merijn Brand [17 Feb 2004]
14# This comment is just to ensure that Configure will find variables that
15# are removed/replaced in patches on blead, but are still needed in the
16# 5.8.x, 5.6.x and 5.005.x maintainance tracks.
17# metaconfig -m will scan all .SH files on this level (not deeper), and
18# not in x2p and other subfolders. This file is as good as any .SH
19# patch references
20# #22227 $baserev
21# #22302 $yacc $byacc
22
08c92000 23# H.Merijn Brand [30 Oct 2004]
24# Mentioned for the same reason for future reference
25# #23434 $d_strlcat $d_strlcpy
26
2304df62 27: This forces SH files to create target in same directory as SH file.
28: This is so that make depend always knows where to find SH derivatives.
29case "$0" in
30*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
31esac
32
2304df62 33case "$d_dosuid" in
34*define*) suidperl='suidperl' ;;
35*) suidperl='';;
36esac
37
d5d19f97 38linklibperl='$(LIBPERL)'
3c321fdc 39shrpldflags='$(LDDLFLAGS)'
6ee623d5 40ldlibpth=''
ac9901e0 41DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
d96ebe2e 42case "$useshrplib" in
43true)
f4db5405 44 # Prefix all runs of 'miniperl' and 'perl' with
5cf1d1f1 45 # $ldlibpth so that ./perl finds *this* shared libperl.
c1b49bc0 46 case "$LD_LIBRARY_PATH" in
47 '')
48 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
49 *)
50 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
51 esac
6ee623d5 52
d5d19f97 53 pldlflags="$cccdlflags"
94c41b70 54 static_target='static_pic'
d96ebe2e 55 case "${osname}${osvers}" in
56 next4*)
3c321fdc 57 ld=libtool
58 lddlflags="-dynamic -undefined warning -framework System \
59 -compatibility_version 1 -current_version $patchlevel \
60 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
6ee623d5 61 ;;
f556e5b9 62 rhapsody*|darwin*)
63 shrpldflags="${ldflags} -dynamiclib \
c1e7a127 64 -compatibility_version \
65 ${api_revision}.${api_version}.${api_subversion} \
f556e5b9 66 -current_version \
c1e7a127 67 ${revision}.${patchlevel}.${subversion} \
f556e5b9 68 -install_name \$(shrpdir)/\$@"
69 ;;
5cf1d1f1 70 cygwin*)
8736538c 71 linklibperl="-lperl"
72 ;;
73d40b3e 73 sunos*)
d5d19f97 74 linklibperl="-lperl"
75 ;;
43039de7 76 netbsd*|freebsd[234]*|openbsd*)
099685bc 77 linklibperl="-L. -lperl"
78 ;;
3c321fdc 79 aix*)
80 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
1553ab04 81 case "$osvers" in
549a6b10 82 3*) shrpldflags="$shrpldflags -e _nostart"
1553ab04 83 ;;
549a6b10 84 *) shrpldflags="$shrpldflags -b noentry"
1553ab04 85 ;;
86 esac
9c839522 87 shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
549a6b10 88 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
3c321fdc 89 ;;
1c7d1a19 90 hpux*)
91 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
46193409 92 ;;
ac9901e0 93 os390*)
f2766b05 94 shrpldflags='-W l,dll'
ac9901e0 95 linklibperl='libperl.x'
96 DPERL_EXTERNAL_GLOB=''
97 ;;
655635e8 98 esac
5cf1d1f1 99 case "$ldlibpthname" in
100 '') ;;
101 *)
102 case "$osname" in
103 os2)
104 ldlibpth=''
105 ;;
5cf1d1f1 106 *)
107 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
108 ;;
109 esac
c1b49bc0 110 # Strip off any trailing :'s
111 ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
5cf1d1f1 112 ;;
113 esac
ecfc5424 114
9b9c6f34 115 case "$ldlibpth" in
116 # Protect any spaces
117 *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
118 esac
6904989c 119
9b9c6f34 120 case "$osname" in
121 linux)
830717a7 122 # If there is a pre-existing $libperl from a previous
123 # installation, Linux needs to use LD_PRELOAD to
124 # override the LD_LIBRARY_PATH setting. See the
125 # INSTALL file, under "Building a shared perl library".
126 # If there is no pre-existing $libperl, we don't need
127 # to do anything further.
128 if test -f $archlib/CORE/$libperl; then
68e8d60a 129 rm -f preload
d0ae58a5 130 cat <<'EOT' > preload
fde91635 131#! /bin/sh
132lib=$1
133shift
134test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
135exec "$@"
136EOT
9b9c6f34 137 chmod 755 preload
138 ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
830717a7 139 fi
140 ;;
9b9c6f34 141 os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
142 ;;
60d79001 143 esac
9b9c6f34 144
60d79001 145 ;;
9b9c6f34 146
147*) pldlflags=''
148 static_target='static'
b1f5ad7d 149 ;;
150esac
151
a0d0e21e 152: Prepare dependency lists for Makefile.
153dynamic_list=' '
154for f in $dynamic_ext; do
155 : the dependency named here will never exist
ecfc5424 156 base=`echo "$f" | sed 's/.*\///'`
75f92628 157 dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
a0d0e21e 158done
159
160static_list=' '
a0d0e21e 161for f in $static_ext; do
162 base=`echo "$f" | sed 's/.*\///'`
cd4d8a96 163 static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
a0d0e21e 164done
165
4318d5a0 166nonxs_list=' '
167for f in $nonxs_ext; do
168 base=`echo "$f" | sed 's/.*\///'`
169 nonxs_list="$nonxs_list ext/$f/pm_to_blib"
170done
171
2304df62 172echo "Extracting Makefile (with variable substitutions)"
655635e8 173$spitshell >Makefile <<!GROK!THIS!
a0d0e21e 174# Makefile.SH
85e6fe83 175# This file is derived from Makefile.SH. Any changes made here will
176# be lost the next time you run Configure.
655635e8 177# Makefile is used to generate $firstmakefile. The only difference
178# is that $firstmakefile has the dependencies filled in at the end.
0de566d7 179
2304df62 180CC = $cc
232e078e 181LD = $ld
16d20bd9 182
2304df62 183LDFLAGS = $ldflags
184CLDFLAGS = $ldflags
85e6fe83 185
2304df62 186mallocsrc = $mallocsrc
187mallocobj = $mallocobj
85e6fe83 188LNS = $lns
4c901d04 189# NOTE: some systems don't grok "cp -f". XXX Configure test needed?
190CPS = $cp
2304df62 191RMS = rm -f
85e6fe83 192ranlib = $ranlib
193
16d20bd9 194# The following are mentioned only to make metaconfig include the
195# appropriate questions in Configure. If you want to change these,
8e07c86e 196# edit config.sh instead, or specify --man1dir=/wherever on
16d20bd9 197# installman commandline.
198bin = $installbin
199scriptdir = $scriptdir
d96ebe2e 200shrpdir = $archlibexp/CORE
16d20bd9 201privlib = $installprivlib
202man1dir = $man1dir
203man1ext = $man1ext
204man3dir = $man3dir
205man3ext = $man3ext
206
85e6fe83 207# The following are used to build and install shared libraries for
208# dynamic loading.
209LDDLFLAGS = $lddlflags
3c321fdc 210SHRPLDFLAGS = $shrpldflags
85e6fe83 211CCDLFLAGS = $ccdlflags
a0d0e21e 212DLSUFFIX = .$dlext
ecfc5424 213PLDLFLAGS = $pldlflags
d96ebe2e 214LIBPERL = $libperl
d5d19f97 215LLIBPERL= $linklibperl
ecfc5424 216SHRPENV = $shrpenv
a0d0e21e 217
94c41b70 218# Static targets are ordinarily built without CCCDLFLAGS. However,
219# if building a shared libperl.so that might later be linked into
220# another application, then it might be appropriate to also build static
221# extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
222# for GNU cc). This is handled by ext/util/make_ext.
223STATIC = $static_target
224
6ee623d5 225# The following is used to include the current directory in
5cf1d1f1 226# the dynamic loader path you are building a shared libperl.
6ee623d5 227LDLIBPTH = $ldlibpth
228
a0d0e21e 229dynamic_ext = $dynamic_list
230static_ext = $static_list
4318d5a0 231nonxs_ext = $nonxs_list
232ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
cd4d8a96 233DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
2304df62 234
9c839522 235libs = $perllibs $cryptlib
2304df62 236
443a5b98 237public = perl\$(EXE_EXT) $suidperl utilities translators
2304df62 238
239shellflags = $shellflags
240
d96ebe2e 241# This is set to MAKE=$make if your $make command doesn't
242# do it for you.
243$make_set_make
4633a7c4 244
1fef16b3 245# Mention $gmake here so it gets probed for by Configure.
246
dfe9444c 247# These variables may need to be manually set for non-Unix systems.
ccc7f9b3 248AR = $full_ar
dfe9444c 249EXE_EXT = $_exe
250LIB_EXT = $_a
251OBJ_EXT = $_o
252PATH_SEP = $p_
4633a7c4 253
254FIRSTMAKEFILE = $firstmakefile
255
256# Any special object files needed by this architecture, e.g. os2/os2.obj
257ARCHOBJS = $archobjs
258
89ada9f2 259.SUFFIXES: .c \$(OBJ_EXT) .i .s
cd4d8a96 260
d96ebe2e 261# grrr
262SHELL = $sh
655635e8 263
28e8609d 264# how to tr(anslate) newlines
265TRNL = '$trnl'
266
82240bfc 267OPTIMIZE = $optimize
268
3343e82c 269EXTRAS = $extras
270
bf35c3f6 271INSTALLPREFIXEXP = $prefix
272
d56c5707 273!GROK!THIS!
b7b35fc2 274# not used by Makefile but by installperl;
d56c5707 275# mentioned here so that metaconfig picks these up
276# $installusrbinperl
277# $versiononly
b7b35fc2 278
8170cb12 279case "${osname}:${osvers}" in
280darwin:*)
281$spitshell >>Makefile <<EOF
282
283# Your locales are broken (osname $osname, osvers $osvers)
284# and to avoid the numerous
285# perl: warning: Setting locale failed.
286# warnings during the build process we reset the locale variables.
287
288LC_ALL=C
289LANG=C
290LANGUAGE=C
291EOF
292 ;;
293esac
2304df62 294
85e6fe83 295## In the following dollars and backticks do not need the extra backslash.
2304df62 296$spitshell >>Makefile <<'!NO!SUBS!'
297
75550b4e 298CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
89ada9f2 299
75550b4e 300CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
2304df62 301
abae58a6 302private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
2304df62 303
4633a7c4 304# Files to be built with variable substitution before miniperl
305# is available.
306sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
4755096e 307 makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
4633a7c4 308
3ebb1980 309shextract = Makefile cflags config.h makeaperl makedepend \
4755096e 310 makedir myconfig writemain pod/Makefile
4633a7c4 311
312# Files to be built with variable substitution after miniperl is
313# available. Dependencies handled manually below (for now).
2304df62 314
efb12ca0 315pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
41630250 316 pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
4633a7c4 317
4755096e 318# lib/lib.pm is not listed here because it has a rule of its own.
efb12ca0 319plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
41630250 320 pod/pod2usage pod/podchecker pod/podselect
4633a7c4 321
4755096e 322addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
2304df62 323
5ad7e614 324# Unicode data files generated by mktables
325unidatafiles = lib/unicore/Canonical.pl lib/unicore/Exact.pl \
326 lib/unicore/Properties lib/unicore/Decomposition.pl \
7ebf06b3 327 lib/unicore/CombiningClass.pl lib/unicore/Name.pl lib/unicore/PVA.pl
5ad7e614 328
329# Directories of Unicode data files generated by mktables
330unidatadirs = lib/unicore/To lib/unicore/lib
331
fed7345c 332h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
dd2155a4 333h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
334h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
219f41b1 335h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
68795e93 336h5 = utf8.h warnings.h
33b839e2 337h = $(h1) $(h2) $(h3) $(h4) $(h5)
2304df62 338
10bc17b6 339c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
a0ed51b3 340c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
dd2155a4 341c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
68795e93 342c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
2304df62 343
c015c5e4 344c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c opmini.c
2304df62 345
dd2155a4 346obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT)
cd4d8a96 347obj2 = 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)
68795e93 348obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) utf8$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) universal$(OBJ_EXT) xsutils$(OBJ_EXT) globals$(OBJ_EXT) perlio$(OBJ_EXT) perlapi$(OBJ_EXT) numeric$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT)
655635e8 349
4633a7c4 350obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
2304df62 351
352lintflags = -hbvxac
353
cd4d8a96 354.c$(OBJ_EXT):
d96ebe2e 355 $(CCCMD) $(PLDLFLAGS) $*.c
2304df62 356
89ada9f2 357.c.i:
358 $(CCCMDSRC) -E $*.c > $*.i
359
360.c.s:
361 $(CCCMDSRC) -S $*.c
362
5ad7e614 363all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
248e23d9 364 @echo " ";
fcfe1ab7 365 @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
909b3858 366
b2c07774 367.PHONY: all compile translators utilities
b27471b9 368
6ee623d5 369compile: all
370 echo "testing compilation" > testcompile;
371 cd utils; $(MAKE) compile;
f4db5405 372 cd x2p; $(MAKE) compile;
6ee623d5 373 cd pod; $(MAKE) compile;
374
443a5b98 375translators: miniperl$(EXE_EXT) lib/Config.pm FORCE
6ee623d5 376 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
8e07c86e 377
443a5b98 378utilities: miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
6ee623d5 379 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
909b3858 380
381
16d20bd9 382# This is now done by installman only if you actually want the man pages.
383# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
85e6fe83 384
385# Phony target to force checking subdirectories.
e50aee73 386# Apparently some makes require an action for the FORCE target.
869a466c 387.PHONY: FORCE
85e6fe83 388FORCE:
4633a7c4 389 @sh -c true
ac9901e0 390!NO!SUBS!
391$spitshell >>Makefile <<!GROK!THIS!
85e6fe83 392
4ba7095c 393# We do a copy of the op.c instead of a symlink because gcc gets huffy
394# if we have a symlink forest to another disk (it complains about too many
395# levels of symbolic links, even if we have only two)
396
c015c5e4 397opmini.c: op.c
398 \$(CPS) op.c opmini.tmp
399 sh mv-if-diff opmini.tmp opmini.c
400
401opmini\$(OBJ_EXT): opmini.c
ac9901e0 402 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
bd0dd1d8 403
ac9901e0 404!GROK!THIS!
405$spitshell >>Makefile <<'!NO!SUBS!'
517e7c64 406miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
92c28edd 407 $(CCCMD) $(PLDLFLAGS) $*.c
ecfc5424 408
92c28edd 409perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
e8827f64 410 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
92c28edd 411 sh mv-if-diff writemain.tmp perlmain.c
85e6fe83 412
e31d4690 413!NO!SUBS!
414case "$osname" in
415cygwin)
416 ;; # Let cygwin/Makefile.SHs do its work.
417*)
418 $spitshell >>Makefile <<'!NO!SUBS!'
cd4d8a96 419perlmain$(OBJ_EXT): perlmain.c
92c28edd 420 $(CCCMD) $(PLDLFLAGS) $*.c
85e6fe83 421
e31d4690 422!NO!SUBS!
423 ;;
424esac
425$spitshell >>Makefile <<'!NO!SUBS!'
a0d0e21e 426# The file ext.libs is a list of libraries that must be linked in
427# for static extensions, e.g. -lm -lgdbm, etc. The individual
428# static extension Makefile's add to it.
fed7345c 429ext.libs: $(static_ext)
a0d0e21e 430 -@test -f ext.libs || touch ext.libs
85e6fe83 431
ecfc5424 432!NO!SUBS!
599a829f 433
d96ebe2e 434# How to build libperl. This is still rather convoluted.
599a829f 435# Load up custom Makefile.SH fragment for shared loading and executables:
8736538c 436case "$osname" in
8736538c 437*)
438 Makefile_s="$osname/Makefile.SHs"
439 ;;
440esac
441
549a6b10 442case "$osname" in
443aix)
444 $spitshell >>Makefile <<!GROK!THIS!
9c839522 445LIBS = $perllibs
5f9d9a17 446# In AIX we need to change this for building Perl itself from
447# its earlier definition (which is for building external
448# extensions *after* Perl has been built and installed)
449CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
549a6b10 450
451!GROK!THIS!
452 case "$useshrplib" in
453 define|true|[yY]*)
454 $spitshell >>Makefile <<'!NO!SUBS!'
455
456LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
457MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
458
459$(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
460 $(RMS) $(LIBPERL_NONSHR)
461 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
462
bd0dd1d8 463$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
a7089531 464 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
465 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
549a6b10 466
467MINIPERLEXP = $(MINIPERL_NONSHR)
468
469LIBPERLEXPORT = perl.exp
470
471!NO!SUBS!
472
473 ;;
474 *)
475 $spitshell >>Makefile <<'!NO!SUBS!'
476MINIPERLEXP = miniperl$(EXE_EXT)
477
478PERLEXPORT = perl.exp
479
480!NO!SUBS!
481 ;;
482 esac
483 $spitshell >>Makefile <<'!NO!SUBS!'
484perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
5c728af0 485 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp
549a6b10 486 sh mv-if-diff perl.exp.tmp perl.exp
487
488!NO!SUBS!
489 ;;
2c2d71f5 490os2)
491 $spitshell >>Makefile <<'!NO!SUBS!'
492MINIPERLEXP = miniperl
493
494perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
5c728af0 495 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp
2c2d71f5 496 sh mv-if-diff perl.exp.tmp perl5.def
497
498!NO!SUBS!
499 ;;
549a6b10 500esac
501
8736538c 502if test -r $Makefile_s ; then
503 . $Makefile_s
d96ebe2e 504 $spitshell >>Makefile <<!GROK!THIS!
cd4d8a96 505
8736538c 506Makefile: $Makefile_s
cd4d8a96 507!GROK!THIS!
508else
f0efd8cf 509 $spitshell >>Makefile <<'!NO!SUBS!'
549a6b10 510$(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
9c9e9f08 511!NO!SUBS!
d96ebe2e 512 case "$useshrplib" in
513 true)
514 $spitshell >>Makefile <<'!NO!SUBS!'
6bdd71ef 515 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs)
3c321fdc 516!NO!SUBS!
517 case "$osname" in
518 aix)
519 $spitshell >>Makefile <<'!NO!SUBS!'
28e8609d 520 rm -f libperl$(OBJ_EXT)
3c321fdc 521 mv $@ libperl$(OBJ_EXT)
522 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
ecfc5424 523!NO!SUBS!
3c321fdc 524 ;;
525 esac
d96ebe2e 526 ;;
527 *)
528 $spitshell >>Makefile <<'!NO!SUBS!'
529 rm -f $(LIBPERL)
530 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
531 @$(ranlib) $(LIBPERL)
655635e8 532!NO!SUBS!
d96ebe2e 533 ;;
534 esac
599a829f 535 $spitshell >>Makefile <<'!NO!SUBS!'
536
537# How to build executables.
538
539# The $& notation tells Sequent machines that it can do a parallel make,
540# and is harmless otherwise.
541# The miniperl -w -MExporter line is a basic cheap test to catch errors
542# before make goes on to run preplibrary and then MakeMaker on extensions.
543# This is very handy because later errors are often caused by miniperl
544# build problems but that's not obvious to the novice.
545# The Module used here must not depend on Config or any extensions.
546
ecfb2188 547!NO!SUBS!
548
549 case "${osname}${osvers}" in
8fdf96e1 550 aix*)
ecfb2188 551 $spitshell >>Makefile <<'!NO!SUBS!'
bd0dd1d8 552miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
8fdf96e1 553 $(CC) -o miniperl $(CLDFLAGS) \
554 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
ecfb2188 555 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
bd0dd1d8 556 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188 557!NO!SUBS!
558 ;;
8fdf96e1 559 beos*|next4*)
535d2540 560 $spitshell >>Makefile <<'!NO!SUBS!'
561miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
8fdf96e1 562 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
535d2540 563 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
564 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
565!NO!SUBS!
566 ;;
cb3fc426 567 darwin*)
986530ea 568 case "$osvers" in
569 [1-6].*) ;;
570 *) case "$ldflags" in
571 *"-flat_namespace"*) ;;
572 *) # to allow opmini.o to override stuff in libperl.dylib
69625aa9 573 $spitshell >>Makefile <<!NO!SUBS!
574NAMESPACEFLAGS = -force_flat_namespace
575!NO!SUBS!
986530ea 576 ;;
577 esac
578 ;;
cb3fc426 579 esac
580 $spitshell >>Makefile <<'!NO!SUBS!'
581miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
582 -@rm -f miniperl.xok
69625aa9 583 $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \
cb3fc426 584 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
585 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
cb3fc426 586!NO!SUBS!
587 ;;
ecfb2188 588 *)
589 $spitshell >>Makefile <<'!NO!SUBS!'
443a5b98 590miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
93c0359c 591 -@rm -f miniperl.xok
f913803b 592 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
a7089531 593 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
bd0dd1d8 594 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188 595!NO!SUBS!
596 ;;
597 esac
598
599 $spitshell >>Makefile <<'!NO!SUBS!'
599a829f 600
443a5b98 601perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
93c0359c 602 -@rm -f miniperl.xok
f913803b 603 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 604
4ae3d70a 605# Purify/Quantify Perls.
606
443a5b98 607pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 608 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 609
443a5b98 610purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 611 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
dbadb36a 612
443a5b98 613quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 614 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 615
7a834142 616# Valgrind perl (currently Linux only)
617
618perl.valgrind.config: config.sh
619 @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
620 @$(MAKE) perl.config.dashg
621 @echo "Checking usemymalloc='n' in config.sh..."
622 @grep "^usemymalloc=" config.sh
623 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
624 @echo "And of course you have to have valgrind..."
71152cd8 625 valgrind ./perl -e 1 2>/dev/null || exit 1
7a834142 626
4ae3d70a 627# Third Degree Perl (Tru64 only)
628
719561de 629perl.config.dashg:
83f0ef60 630 @echo "Checking optimize='-g' in config.sh..."
631 @grep "^optimize=" config.sh
632 @grep "^optimize='-g'" config.sh >/dev/null || exit 1
4ae3d70a 633
634perl.third.config: config.sh
635 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
6e36760b 636 @$(MAKE) perl.config.dashg
83f0ef60 637 @echo "Checking usemymalloc='n' in config.sh..."
638 @grep "^usemymalloc=" config.sh
639 @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
170ba846 640
412c6516 641perl.third: /usr/bin/atom perl.third.config perl
dca31ef4 642 atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
83f0ef60 643 @echo "Now you may run perl.third and then study perl.3log."
15615bfd 644
4ae3d70a 645# Pixie Perls (Tru64 and IRIX only)
646
719561de 647perl.pixie.config: config.sh
4ae3d70a 648 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
6e36760b 649 @$(MAKE) perl.config.dashg
4ae3d70a 650
719561de 651perl.pixie.atom: /usr/bin/atom perl
4ae3d70a 652 atom -tool pixie -L. -all -toolargs="-quiet" perl
653
654perl.pixie.irix: perl
655 pixie perl
656
719561de 657perl.pixie: /usr/bin/pixie perl.pixie.config perl
4ae3d70a 658 if test -x /usr/bin/atom; then \
659 $(MAKE) perl.pixie.atom; \
660 else \
661 $(MAKE) perl.pixie.irix; \
662 fi
83f0ef60 663 @echo "Now you may run perl.pixie and then run pixie."
664
665# Gprof Perl
666
667perl.config.dashpg:
668 @echo "Checking optimize='-pg' in config.sh..."
669 @grep "^optimize=" config.sh
64778e5f 670 @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
83f0ef60 671
672perl.gprof.config: config.sh
673 @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
674 @$(MAKE) perl.config.dashpg
675
676perl.gprof: /usr/bin/gprof perl.gprof.config
64778e5f 677 @-rm -f perl
51a35ef1 678 $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
83f0ef60 679 @echo "Now you may run perl.gprof and then run gprof perl.gprof."
4ae3d70a 680
51a35ef1 681# Gcov Perl
682
683perl.config.gcov:
684 @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
685 @echo "Checking gccversion in config.sh..."
686 @grep "^gccversion=" config.sh
687 @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
688 @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
689 @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
690 @grep "^ccflags=" config.sh
691 @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
692
693perl.gcov: perl.config.gcov
694 @-rm -f perl
695 $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
696 @echo "Now you may run perl.gcov and then run gcov some.c."
697
f946bb38 698# Microperl. This is just a convenience thing if one happens to
699# build also the full Perl and therefore the real big Makefile:
f4db5405 700# usually one should manually explicitly issue the below command.
f946bb38 701
869a466c 702.PHONY: microperl
f946bb38 703microperl:
704 $(MAKE) -f Makefile.micro
705
2304df62 706# This version, if specified in Configure, does ONLY those scripts which need
707# set-id emulation. Suidperl must be setuid root. It contains the "taint"
708# checks as well as the special code to validate that the script in question
709# has been invoked correctly.
710
443a5b98 711suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f913803b 712 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 713
599a829f 714!NO!SUBS!
715
716fi
717
718$spitshell >>Makefile <<'!NO!SUBS!'
719
bf0dfd28 720sperl$(OBJ_EXT): perl.c $(h)
2304df62 721 $(RMS) sperl.c
85e6fe83 722 $(LNS) perl.c sperl.c
d96ebe2e 723 $(CCCMD) -DIAMSUID sperl.c
2304df62 724 $(RMS) sperl.c
725
fec02dd3 726# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
727# test -d lib/auto || mkdir lib/auto
5b7e50ea 728# We need to autosplit in two steps because VOS can't handle so many args
fec02dd3 729#
869a466c 730.PHONY: preplibrary
a64c954a 731preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
cd4d8a96 732 @sh ./makedir lib/auto
a0d0e21e 733 @echo " AutoSplitting perl library"
92c28edd 734 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
5b7e50ea 735 autosplit_lib_modules(@ARGV)' lib/*.pm
736 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
737 autosplit_lib_modules(@ARGV)' lib/*/*.pm
abae58a6 738 $(MAKE) lib/re.pm
2304df62 739
75f92628 740# Take care to avoid modifying lib/Config.pm without reason
f4db5405 741# (If trying to create a new port and having problems with the configpm script,
fb73857a 742# try 'make minitest' and/or commenting out the tests at the end of configpm.)
ab57a4d7 743lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
d2212429 744 $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
92c28edd 745 sh mv-if-diff configpm.tmp $@
2304df62 746
443a5b98 747lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
e8827f64 748 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
92c28edd 749 sh mv-if-diff minimod.tmp $@
abae58a6 750 -touch lib/ExtUtils/Miniperl.pm
fed7345c 751
92c28edd 752lib/re.pm: ext/re/re.pm
abae58a6 753 cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
7cfc0d09 754
180c42e0 755$(plextract): miniperl$(EXE_EXT) lib/Config.pm x2p/s2p
42c30c63 756 @-rm -f $@
92c28edd 757 $(LDLIBPTH) ./miniperl -Ilib $@.PL
72b3d9b4 758
d4d4a62f 759x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL
36cf9c44 760 cd x2p; $(LDLIBPTH) $(MAKE) s2p
180c42e0 761
443a5b98 762lib/lib.pm: miniperl$(EXE_EXT) lib/Config.pm
42c30c63 763 @-rm -f $@
4755096e 764 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
765
5ad7e614 766$(unidatafiles): miniperl$(EXE_EXT) lib/Config.pm lib/unicore/mktables
00da7942 767 cd lib/unicore && $(LDLIBPTH) ../../miniperl -I../../lib mktables -w
5ad7e614 768
443a5b98 769extra.pods: miniperl$(EXE_EXT)
fec93702 770 -@test -f extra.pods && rm -f `cat extra.pods`
72b3d9b4 771 -@rm -f extra.pods
b4bc034f 772 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
72b3d9b4 773 nx=`echo $$x | sed -e "s/README\.//"`; \
40096396 774 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
72b3d9b4 775 echo "pod/perl"$$nx".pod" >> extra.pods ; \
776 done
a8476e91 777 -@rm -f pod/perlvms.pod
778 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
1400179b 779 -@rm -f pod/perldelta.pod
0dfdcd8a 780 -@test -f pod/perl592delta.pod && cd pod && $(LNS) perl592delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods # See buildtoc
443a5b98 781extras.make: perl$(EXE_EXT)
70eaf669 782 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
bf35c3f6 783
443a5b98 784extras.test: perl$(EXE_EXT)
70eaf669 785 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
bf35c3f6 786
443a5b98 787extras.install: perl$(EXE_EXT)
70eaf669 788 -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
bf35c3f6 789
869a466c 790.PHONY: install install-strip install-all install-verbose install-silent \
5e2f386f 791 no-install install.perl install.man install.html
869a466c 792
0cf51544 793META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
794 $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
795
f556e5b9 796install-strip:
70eaf669 797 $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
f556e5b9 798
adbebc0b 799install install-all:
70eaf669 800 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
c77385cf 801
4ad019ef 802install-verbose:
70eaf669 803 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
c458b76c 804
4ad019ef 805install-silent:
70eaf669 806 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
4ad019ef 807
808no-install:
70eaf669 809 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
16d20bd9 810
70eaf669 811# Set this to an empty string to avoid an attempt of rebuild before install
812INSTALL_DEPENDENCE = all
813
814install.perl: $(INSTALL_DEPENDENCE) installperl
6ee623d5 815 if [ -n "$(COMPILE)" ]; \
816 then \
817 cd utils; $(MAKE) compile; \
818 cd ../x2p; $(MAKE) compile; \
819 cd ../pod; $(MAKE) compile; \
83673e1f 820 else :; \
6ee623d5 821 fi
5a9231b0 822 $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
bf35c3f6 823 $(MAKE) extras.install
a0d0e21e 824
b1a1e9f1 825install.man: all installman
5a9231b0 826 $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
16d20bd9 827
84902520 828# XXX Experimental. Hardwired values, but useful for testing.
829# Eventually Configure could ask for some of these values.
830install.html: all installhtml
40096396 831 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
6ee623d5 832 $(LDLIBPTH) ./perl installhtml \
84902520 833 --podroot=. --podpath=. --recurse \
834 --htmldir=$(privlib)/html \
835 --htmlroot=$(privlib)/html \
836 --splithead=pod/perlipc \
837 --splititem=pod/perlfunc \
838 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
839 --verbose
840
16d20bd9 841
a0d0e21e 842# I now supply perly.c with the kits, so the following section is
0de566d7 843# used only if you force bison to run by saying
844# make regen_perly
845# You normally shouldn't remake perly.[ch].
846
847.PHONY: regen_perly
848
849run_byacc:
850 @echo "run_byacc is obsolete; try 'make regen_perly' instead"
851
852# this outputs perly.act and perly.tab
853regen_perly:
854 perl regen_perly.pl
56febc5e 855
856# We don't want to regenerate perly.c and perly.h, but they might
857# appear out-of-date after a patch is applied or a new distribution is
858# made.
92c28edd 859perly.c: perly.y
b233458b 860 -@sh -c true
861
92c28edd 862perly.h: perly.y
b233458b 863 -@sh -c true
864
bd656b61 865# No compat3.sym here since and including the 5.004_50.
e4d5a464 866# No interp.sym since 5.005_03.
22c35a8c 867SYM = global.sym globvar.sym perlio.sym pp.sym
419eaf7b 868
22c35a8c 869SYMH = perlvars.h intrpvar.h thrdvar.h
419eaf7b 870
dae78bb1 871CHMOD_W = chmod +w
872
a8581515 873# The following files are generated automatically
9ad884cb 874# autodoc.pl: pod/perlapi.pod pod/perlintern.pod
c83f8f39 875# bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
876# ext/B/B/Asmdata.pm
9ad884cb 877# embed.pl: proto.h embed.h embedvar.h global.sym
878# perlapi.h perlapi.c
879# [* embed.pl needs pp.sym generated by opcode.pl! *]
880# keywords.pl: keywords.h
881# opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
c83f8f39 882# regcomp.pl: regnodes.h
883# warnings.pl: warnings.h lib/warnings.pm
e50aee73 884# The correct versions should be already supplied with the perl kit,
885# in case you don't have perl available.
36bb303b 886# To force them to be regenerated, run
9ad884cb 887# perl regen.pl
36bb303b 888# with your existing copy of perl
889# (make regen_headers is kept for backwards compatibility)
e1354ed6 890
b4d4469a 891AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
892 embed.h embedvar.h global.sym \
893 pod/perlintern.pod pod/perlapi.pod \
acfe0abc 894 perlapi.h perlapi.c ext/ByteLoader/byterun.h \
c83f8f39 895 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
896 warnings.h lib/warnings.pm
e1354ed6 897
869a466c 898.PHONY: regen_headers regen_pods regen_all
899
9ad884cb 900regen regen_headers: FORCE
901 -perl regen.pl
8e07c86e 902
4755096e 903regen_pods: FORCE
fcfe1ab7 904 -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
4755096e 905
0de566d7 906regen_all: regen regen_pods
9fec149b 907
1aea71db 908.PHONY: manisort manicheck
909
910manisort: FORCE
f3a5d88c 911 LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
912 LC_ALL=C sort -fdo MANIFEST MANIFEST)
1aea71db 913
914manicheck: FORCE
915 perl Porting/manicheck
916
a0d0e21e 917# Extensions:
4318d5a0 918# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
919# automatically get built. There should ordinarily be no need to change
920# any of this part of makefile.
a0d0e21e 921#
922# The dummy dependency is a place holder in case $(dynamic_ext) or
923# $(static_ext) is empty.
924#
925# DynaLoader may be needed for extensions that use Makefile.PL.
926
443a5b98 927$(DYNALOADER): miniperl$(EXE_EXT) preplibrary FORCE
94c41b70 928 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 929
443a5b98 930d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
92c28edd 931 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 932
443a5b98 933s_dummy $(static_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
94c41b70 934 @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
2304df62 935
443a5b98 936n_dummy $(nonxs_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
92c28edd 937 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
4318d5a0 938
869a466c 939.PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
940 realclean _realcleaner clobber _clobber \
941 distclean veryclean _verycleaner
942
17b893d8 943clean: _tidy _mopup
70af249b 944
2edbd6da 945realclean: _realcleaner _mopup
fcfe1ab7 946 @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
70af249b 947
b37ebb13 948_clobber:
5440bc8e 949 -@rm -f Cross/run-* Cross/to-* Cross/from-*
bf35c3f6 950 rm -f config.sh cppstdin Policy.sh extras.lst
b37ebb13 951
952clobber: _realcleaner _mopup _clobber
70af249b 953
954distclean: clobber
955
2edbd6da 956# Like distclean but also removes emacs backups and *.orig.
b37ebb13 957veryclean: _verycleaner _mopup _clobber
958 -@rm -f Obsolete Wanted
2edbd6da 959
70af249b 960# Do not 'make _mopup' directly.
961_mopup:
34433938 962 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c opmini.c
1ed50e5b 963 -rmdir .depending
72b3d9b4 964 -@test -f extra.pods && rm -f `cat extra.pods`
b4bc034f 965 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
ac83e8b0 966 -rm -f perl.exp ext.libs extra.pods opmini.o
d96ebe2e 967 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1cfa4ec7 968 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
9d4d067b 969 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
6a966751 970 -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
93c0359c 971 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
a0457be1 972 -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
1ed50e5b 973 -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
974 -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
70af249b 975
976# Do not 'make _tidy' directly.
977_tidy:
e3f83878 978 -cd pod; $(LDLIBPTH) $(MAKE) clean
979 -cd utils; $(LDLIBPTH) $(MAKE) clean
980 -cd x2p; $(LDLIBPTH) $(MAKE) clean
4318d5a0 981 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 982 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
a0d0e21e 983 done
6ee623d5 984 rm -f testcompile compilelog
ff68c719 985
2edbd6da 986_cleaner1:
4633a7c4 987 -cd os2; rm -f Makefile
2edbd6da 988 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
989 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
990 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
4318d5a0 991 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
2edbd6da 992 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
a0d0e21e 993 done
2edbd6da 994
2ad994b6 995# Some systems do not support "?", so keep these files separate.
2edbd6da 996_cleaner2:
2ad994b6 997 -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
998 rm -f core *perl.core t/core t/*perl.core
999 rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1000 rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
a0d0e21e 1001 rm -rf $(addedbyconf)
0eb4e931 1002 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
3d40713c 1003 rm -f $(private) lib/Config.pod
ca12659b 1004 rm -rf $(unidatafiles) $(unidatadirs)
a0d0e21e 1005 rm -rf lib/auto
07a6e20d 1006 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
16d20bd9 1007 rm -f h2ph.man pstruct
a0d0e21e 1008 rm -rf .config
9b9c6f34 1009 rm -f preload
6ee623d5 1010 rm -f testcompile compilelog
26f17523 1011 -rmdir lib/B lib/Data lib/Digest
1012 rm -rf lib/Encode
c61dfb31 1013 -rmdir lib/Filter/Util lib/IO/Socket lib/IO
1014 -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1015 -rmdir lib/threads lib/XS
ecfc5424 1016
f4db5405 1017_realcleaner:
2edbd6da 1018 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1019 @$(LDLIBPTH) $(MAKE) _cleaner2
1020
f4db5405 1021_verycleaner:
2edbd6da 1022 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1023 @$(LDLIBPTH) $(MAKE) _cleaner2
c94787a5 1024 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
2edbd6da 1025
2304df62 1026# The following lint has practically everything turned on. Unfortunately,
1027# you have to wade through a lot of mumbo jumbo that can't be suppressed.
1028# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
1029# for that spot.
1030
869a466c 1031.PHONY: lint
bf0dfd28 1032lint: $(c)
2304df62 1033 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
1034
fb73857a 1035# Need to unset during recursion to go out of loop.
1036# The README below ensures that the dependency list is never empty and
1037# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
cd4d8a96 1038
84902520 1039MAKEDEPEND = Makefile makedepend
cd4d8a96 1040
fb73857a 1041$(FIRSTMAKEFILE): README $(MAKEDEPEND)
cd4d8a96 1042 $(MAKE) depend MAKEDEPEND=
a0d0e21e 1043
599a829f 1044config.h: config_h.SH config.sh
655635e8 1045 $(SHELL) config_h.SH
1046
a0d0e21e 1047# When done, touch perlmain.c so that it doesn't get remade each time.
869a466c 1048.PHONY: depend
2304df62 1049depend: makedepend
fb73857a 1050 sh ./makedepend MAKE=$(MAKE)
a0d0e21e 1051 - test -s perlmain.c && touch perlmain.c
2304df62 1052 cd x2p; $(MAKE) depend
1053
cd4d8a96 1054# Cannot postpone this until $firstmakefile is ready ;-)
92c28edd 1055makedepend: makedepend.SH config.sh
1056 sh ./makedepend.SH
cd4d8a96 1057
1167a30e 1058.PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
869a466c 1059 test_tty test-tty _test_tty test_notty test-notty _test_notty \
e018f8be 1060 utest ucheck test.utf8 check.utf8 test.torture torturetest \
1de9afcd 1061 test.utf16 check.utf16 utest.utf16 ucheck.utf16 \
869a466c 1062 test.third check.third utest.third ucheck.third test_notty.third \
69bfbd2f 1063 test.deparse test_notty.deparse test_harness test_harness_notty \
b26492ee 1064 test.bytecompile minitest coretest test.taintwarn
869a466c 1065
ec861bc1 1066# Cannot delegate rebuilding of t/perl to make
1067# to allow interlaced test and minitest
3e3baf6d 1068
1167a30e 1069TESTFILE=TEST
1070
1071_test_prep:
ec861bc1 1072 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
3e3baf6d 1073
1167a30e 1074# Architecture-neutral stuff:
1075
1076test_prep_pre: preplibrary utilities $(nonxs_ext)
1077
4caedec1 1078test_prep: test_prep_pre miniperl$(EXE_EXT) $(unidatafiles) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
5fe84fd2 1079 PERL=./perl $(MAKE) _test_prep
ec861bc1 1080
5fe84fd2 1081_test_tty:
2a30c5e0 1082 cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
ec861bc1 1083
5fe84fd2 1084_test_notty:
2a30c5e0 1085 cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
ec861bc1 1086
1087# The second branch is for testing without a tty or controlling terminal,
1088# see t/op/stat.t
1089_test:
994e9bc0 1090 if (true </dev/tty) >/dev/null 2>&1; then \
1167a30e 1091 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty ; \
994e9bc0 1092 else \
1167a30e 1093 $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
994e9bc0 1094 fi
3d8f1d64 1095 @echo "Ran tests" > t/rantests
a0ed51b3 1096
937aca76 1097test check: test_prep
ec861bc1 1098 PERL=./perl $(MAKE) _test
1099
937aca76 1100test_tty: test_prep
5fe84fd2 1101 PERL=./perl $(MAKE) _test_tty
ec861bc1 1102
937aca76 1103test_notty: test_prep
5fe84fd2 1104 PERL=./perl $(MAKE) _test_notty
ec861bc1 1105
83f0ef60 1106utest ucheck test.utf8 check.utf8: test_prep
35117553 1107 PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
ec861bc1 1108
5a6e071d 1109coretest: test_prep
1110 PERL=./perl TEST_ARGS=-core $(MAKE) _test
1111
48a293f8 1112test-prep: test_prep
5fe84fd2 1113
1114test-tty: test_tty
1115
1116test-notty: test_notty
1117
e018f8be 1118# Torture testing
1119
1120test.torture torturetest: test_prep
1121 PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1122
1de9afcd 1123# Targets for UTF16 testing:
1124
1125minitest.utf16: minitest.prep
1126 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1127 && $(LDLIBPTH) ./perl TEST -minitest -utf16 base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
1128
1129test.utf16 check.utf16: test_prep
1130 PERL=./perl $(MAKE) TEST_ARGS=-utf16 _test
1131
1132utest.utf16 ucheck.utf16: test_prep
1133 PERL=./perl $(MAKE) TEST_ARGS="-utf8 -utf16" _test
1134
7a834142 1135# Targets for valgrind testing:
1136
1137test_prep.valgrind: test_prep perl.valgrind
1138 PERL=./perl $(MAKE) _test_prep
1139
1140test.valgrind check.valgrind: test_prep perl.valgrind.config
1141 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test
1142
1143utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind
1144 PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1145
1146test_notty.valgrind: test_prep.valgrind perl.valgrind
1147 PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1148
ec861bc1 1149# Targets for Third Degree testing.
1150
9b99345a 1151test_prep.third: test_prep perl.third
5fe84fd2 1152 PERL=./perl.third $(MAKE) _test_prep
ec861bc1 1153
937aca76 1154test.third check.third: test_prep.third perl.third
ec861bc1 1155 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1156
937aca76 1157utest.third ucheck.third: test_prep.third perl.third
35117553 1158 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
ec861bc1 1159
937aca76 1160test_notty.third: test_prep.third perl.third
5fe84fd2 1161 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
2304df62 1162
1df34986 1163# Targets for Bytecode/ByteLoader testing.
1164
1165test.bytecompile: test_prep
1166 PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test
1167
35117553 1168# Targets for Deparse testing.
1169
1170test.deparse: test_prep
1171 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1172
1173test_notty.deparse: test_prep
1174 PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1175
b26492ee 1176# Targets to run the test suite with -t
1177
1178test.taintwarn: test_prep
1179 PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1180
1de9afcd 1181minitest.prep:
4fa3f26e 1182 -@test -f lib/lib.pm && test -f lib/Config.pm || \
5ad7e614 1183 $(MAKE) lib/Config.pm lib/lib.pm $(unidatafiles)
4fa3f26e 1184 @echo " "
d96ebe2e 1185 @echo "You may see some irrelevant test failures if you have been unable"
5ad7e614 1186 @echo "to build lib/Config.pm, lib/lib.pm or the Unicode data files."
4fa3f26e 1187 @echo " "
1de9afcd 1188
1189# Can't depend on lib/Config.pm because that might be where miniperl
1190# is crashing.
1191minitest: miniperl$(EXE_EXT) lib/re.pm minitest.prep
cd4d8a96 1192 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
43651d81 1193 && $(LDLIBPTH) ./perl TEST -minitest base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t </dev/tty
16d20bd9 1194
1167a30e 1195# Test via harness
1196
1197test_harness: test_prep
1198 PERL=./perl $(MAKE) TESTFILE=harness _test
1199
69bfbd2f 1200test_harness_notty: test_prep
1201 PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1202
fb73857a 1203# Handy way to run perlbug -ok without having to install and run the
84902520 1204# installed perlbug. We don't re-run the tests here - we trust the user.
fb73857a 1205# Please *don't* use this unless all tests pass.
1d2dff63 1206# If you want to report test failures, use "make nok" instead.
869a466c 1207
1208.PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1209
188cd53f 1210ok: utilities
92c28edd 1211 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
84902520 1212
105f9295 1213okfile: utilities
92c28edd 1214 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
105f9295 1215
890b8eb0 1216oknack: utilities
1217 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1218
1219okfilenack: utilities
1220 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1221
1d2dff63 1222nok: utilities
92c28edd 1223 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1d2dff63 1224
b4e8cfaf 1225nokfile: utilities
1226 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1227
890b8eb0 1228noknack: utilities
1229 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1230
1231nokfilenack: utilities
1232 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1233
869a466c 1234.PHONY: clist hlist shlist pllist
1235
85e6fe83 1236clist: $(c)
92c28edd 1237 echo $(c) | tr ' ' $(TRNL) >.clist
2304df62 1238
85e6fe83 1239hlist: $(h)
92c28edd 1240 echo $(h) | tr ' ' $(TRNL) >.hlist
2304df62 1241
85e6fe83 1242shlist: $(sh)
92c28edd 1243 echo $(sh) | tr ' ' $(TRNL) >.shlist
2304df62 1244
4633a7c4 1245pllist: $(pl)
92c28edd 1246 echo $(pl) | tr ' ' $(TRNL) >.pllist
4633a7c4 1247
92c28edd 1248Makefile: Makefile.SH ./config.sh
1249 $(SHELL) Makefile.SH
760ac839 1250
869a466c 1251.PHONY: distcheck
599a829f 1252distcheck: FORCE
760ac839 1253 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1254
869a466c 1255.PHONY: elc
771c4874 1256elc: emacs/cperl-mode.elc
1257
1258emacs/cperl-mode.elc: emacs/cperl-mode.el
1259 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1260
869a466c 1261.PHONY: etags ctags tags
1262
d6a255e6 1263etags: TAGS
1264
1265TAGS: emacs/cperl-mode.elc
3ee700d1 1266 sh emacs/ptags
01e22528 1267
d6a255e6 1268ctags: tags
1269
1270# Let's hope make will not go into an infinite loop on case-unsensitive systems
1271# This may also fail if . is in the head of the path, since perl will
1272# require -Ilib
1273tags: TAGS
1274 perl emacs/e2ctags.pl TAGS > tags
3ee700d1 1275
2304df62 1276# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1277# If this runs make out of memory, delete /usr/include lines.
1278!NO!SUBS!
1279
85e6fe83 1280$eunicefix Makefile
2304df62 1281case `pwd` in
1282*SH)
85e6fe83 1283 $rm -f ../Makefile
cd4d8a96 1284 $ln Makefile ../Makefile
2304df62 1285 ;;
1286esac
cd4d8a96 1287$rm -f $firstmakefile
5ff3f7a4 1288
1289# Now do any special processing required before building.
1290
1291case "$ebcdic" in
2d340b60 1292define)
5ff3f7a4 1293 xxx=''
2d340b60 1294 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
7a66b286 1295case "$osname" in
25e9a2e3 1296os390|posix-bc)
e9d08790 1297 if cd x2p
5ff3f7a4 1298 then
e9d08790 1299 rm -f y.tab.c y.tab.h
5928ee40 1300 case "$osname" in
1301 posix-bc)
1302 # we are using two different yaccs in BS2000 Posix!
1303 byacc a2p.y >/dev/null 2>&1
1304 ;;
1305 *) # e.g. os390
1306 yacc a2p.y >/dev/null 2>&1
1307 ;;
1308 esac
e9d08790 1309 if cmp -s y.tab.c a2p.c
1310 then
1311 rm -f y.tab.c
1312 else
1313 echo "a2p.y -> a2p.c" >&2
1314 mv -f y.tab.c a2p.c
1315 chmod u+w a2p.c
1316 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
f1f802f7 1317 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
e9d08790 1318 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1319 xxx="$xxx a2p.c"
1320 fi
1321 # In case somebody yacc -d:ed the a2p.y.
1322 if test -f y.tab.h
1323 then
1324 if cmp -s y.tab.h a2p.h
1325 then
1326 rm -f y.tab.h
1327 else
1328 echo "a2p.h -> a2p.h" >&2
1329 mv -f y.tab.h a2p.h
1330 xxx="$xxx a2p.h"
1331 fi
1332 fi
1333 cd ..
5ff3f7a4 1334 fi
7a66b286 1335 ;;
1336vmesa)
1337 # Do nothing in VM/ESA.
1338 ;;
aa34f189 1339*)
e9d08790 1340 echo "'$osname' is an EBCDIC system I don't know that well." >&4
aa34f189 1341 ;;
fe572743 1342esac
5ff3f7a4 1343 case "$xxx" in
1344 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1345 esac
1346 ;;
1347esac
1348