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