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