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