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