Update Changes.
[p5sagit/p5-mst-13.2.git] / Makefile.SH
CommitLineData
599a829f 1#! /bin/sh
2000072c 2case $CONFIGDOTSH 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)
6ee623d5 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} \
51 -image_base 0x4be00000 \
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
4ba7095c 152CPS = $cp -f
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
6f4183fe 266c4 = globals.c perlio.c perlapi.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)
6f4183fe 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)
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
b1a1e9f1 291all: $(FIRSTMAKEFILE) miniperl extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext)
248e23d9 292 @echo " ";
293 @echo " Everything is up to date. 'make test' to run test suite."
909b3858 294
6ee623d5 295compile: all
296 echo "testing compilation" > testcompile;
297 cd utils; $(MAKE) compile;
298 cd x2p; $(MAKE) compile;
299 cd pod; $(MAKE) compile;
300
909b3858 301translators: miniperl lib/Config.pm FORCE
6ee623d5 302 @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
8e07c86e 303
4755096e 304utilities: miniperl lib/Config.pm $(plextract) lib/lib.pm FORCE
6ee623d5 305 @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
909b3858 306
307
16d20bd9 308# This is now done by installman only if you actually want the man pages.
309# @echo " "; echo " Making docs"; cd pod; $(MAKE) all;
85e6fe83 310
311# Phony target to force checking subdirectories.
e50aee73 312# Apparently some makes require an action for the FORCE target.
85e6fe83 313FORCE:
4633a7c4 314 @sh -c true
ac9901e0 315!NO!SUBS!
316$spitshell >>Makefile <<!GROK!THIS!
85e6fe83 317
4ba7095c 318# We do a copy of the op.c instead of a symlink because gcc gets huffy
319# if we have a symlink forest to another disk (it complains about too many
320# levels of symbolic links, even if we have only two)
321
ac9901e0 322opmini\$(OBJ_EXT): op.c config.h
323 \$(RMS) opmini.c
324 \$(CPS) op.c opmini.c
325 \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
326 \$(RMS) opmini.c
bd0dd1d8 327
ac9901e0 328!GROK!THIS!
329$spitshell >>Makefile <<'!NO!SUBS!'
517e7c64 330miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
92c28edd 331 $(CCCMD) $(PLDLFLAGS) $*.c
ecfc5424 332
92c28edd 333perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
e8827f64 334 sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
92c28edd 335 sh mv-if-diff writemain.tmp perlmain.c
85e6fe83 336
cd4d8a96 337perlmain$(OBJ_EXT): perlmain.c
92c28edd 338 $(CCCMD) $(PLDLFLAGS) $*.c
85e6fe83 339
a0d0e21e 340# The file ext.libs is a list of libraries that must be linked in
341# for static extensions, e.g. -lm -lgdbm, etc. The individual
342# static extension Makefile's add to it.
fed7345c 343ext.libs: $(static_ext)
a0d0e21e 344 -@test -f ext.libs || touch ext.libs
85e6fe83 345
ecfc5424 346!NO!SUBS!
599a829f 347
d96ebe2e 348# How to build libperl. This is still rather convoluted.
599a829f 349# Load up custom Makefile.SH fragment for shared loading and executables:
8736538c 350case "$osname" in
8736538c 351*)
352 Makefile_s="$osname/Makefile.SHs"
353 ;;
354esac
355
549a6b10 356case "$osname" in
357aix)
358 $spitshell >>Makefile <<!GROK!THIS!
9c839522 359LIBS = $perllibs
5f9d9a17 360# In AIX we need to change this for building Perl itself from
361# its earlier definition (which is for building external
362# extensions *after* Perl has been built and installed)
363CCDLFLAGS = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
549a6b10 364
365!GROK!THIS!
366 case "$useshrplib" in
367 define|true|[yY]*)
368 $spitshell >>Makefile <<'!NO!SUBS!'
369
370LIBPERL_NONSHR = libperl_nonshr$(LIB_EXT)
371MINIPERL_NONSHR = miniperl_nonshr$(EXE_EXT)
372
373$(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
374 $(RMS) $(LIBPERL_NONSHR)
375 $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
376
bd0dd1d8 377$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
a7089531 378 $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
379 opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
549a6b10 380
381MINIPERLEXP = $(MINIPERL_NONSHR)
382
383LIBPERLEXPORT = perl.exp
384
385!NO!SUBS!
386
387 ;;
388 *)
389 $spitshell >>Makefile <<'!NO!SUBS!'
390MINIPERLEXP = miniperl$(EXE_EXT)
391
392PERLEXPORT = perl.exp
393
394!NO!SUBS!
395 ;;
396 esac
397 $spitshell >>Makefile <<'!NO!SUBS!'
398perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
399 ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
400 sh mv-if-diff perl.exp.tmp perl.exp
401
402!NO!SUBS!
403 ;;
2c2d71f5 404os2)
405 $spitshell >>Makefile <<'!NO!SUBS!'
406MINIPERLEXP = miniperl
407
408perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
409 ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
410 sh mv-if-diff perl.exp.tmp perl5.def
411
412!NO!SUBS!
413 ;;
549a6b10 414esac
415
8736538c 416if test -r $Makefile_s ; then
417 . $Makefile_s
d96ebe2e 418 $spitshell >>Makefile <<!GROK!THIS!
cd4d8a96 419
8736538c 420Makefile: $Makefile_s
cd4d8a96 421!GROK!THIS!
422else
f0efd8cf 423 $spitshell >>Makefile <<'!NO!SUBS!'
549a6b10 424$(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
9c9e9f08 425!NO!SUBS!
d96ebe2e 426 case "$useshrplib" in
427 true)
428 $spitshell >>Makefile <<'!NO!SUBS!'
f2766b05 429 $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj)
3c321fdc 430!NO!SUBS!
431 case "$osname" in
432 aix)
433 $spitshell >>Makefile <<'!NO!SUBS!'
28e8609d 434 rm -f libperl$(OBJ_EXT)
3c321fdc 435 mv $@ libperl$(OBJ_EXT)
436 $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
ecfc5424 437!NO!SUBS!
3c321fdc 438 ;;
439 esac
d96ebe2e 440 ;;
441 *)
442 $spitshell >>Makefile <<'!NO!SUBS!'
443 rm -f $(LIBPERL)
444 $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
445 @$(ranlib) $(LIBPERL)
655635e8 446!NO!SUBS!
d96ebe2e 447 ;;
448 esac
599a829f 449 $spitshell >>Makefile <<'!NO!SUBS!'
450
451# How to build executables.
452
453# The $& notation tells Sequent machines that it can do a parallel make,
454# and is harmless otherwise.
455# The miniperl -w -MExporter line is a basic cheap test to catch errors
456# before make goes on to run preplibrary and then MakeMaker on extensions.
457# This is very handy because later errors are often caused by miniperl
458# build problems but that's not obvious to the novice.
459# The Module used here must not depend on Config or any extensions.
460
ecfb2188 461!NO!SUBS!
462
463 case "${osname}${osvers}" in
535d2540 464 next4*)
ecfb2188 465 $spitshell >>Makefile <<'!NO!SUBS!'
bd0dd1d8 466miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
ecfb2188 467 $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
468 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
bd0dd1d8 469 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188 470!NO!SUBS!
471 ;;
535d2540 472 aix*)
473 $spitshell >>Makefile <<'!NO!SUBS!'
474miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
475 $(CC) -o miniperl $(CLDFLAGS) \
476 `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
477 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
478 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
479!NO!SUBS!
480 ;;
ecfb2188 481 *)
482 $spitshell >>Makefile <<'!NO!SUBS!'
bd0dd1d8 483miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
5869b1f1 484 $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
a7089531 485 miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
bd0dd1d8 486 $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
ecfb2188 487!NO!SUBS!
488 ;;
489 esac
490
491 $spitshell >>Makefile <<'!NO!SUBS!'
599a829f 492
549a6b10 493perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f2766b05 494 $(SHRPENV) $(LDLIBPTH) $(CC) -o perl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 495
4ae3d70a 496# Purify/Quantify Perls.
497
549a6b10 498pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f2766b05 499 $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
599a829f 500
549a6b10 501purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f2766b05 502 $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
dbadb36a 503
549a6b10 504quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f2766b05 505 $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 506
4ae3d70a 507# Third Degree Perl (Tru64 only)
508
509perl.config.-g:
cc4efec9 510 @echo "Checking optimize='-g'..."
511 @grep "^optimize=" config.sh
512 @grep -q "^optimize='-g'" config.sh || exit 1
4ae3d70a 513
514perl.third.config: config.sh
515 @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
516 $(MAKE) perl.config.-g
cc4efec9 517 @echo "Checking usemymalloc='n'..."
518 @grep "^usemymalloc=" config.sh
519 @grep -q "^usemymalloc='n'" config.sh || exit 1
170ba846 520
412c6516 521perl.third: /usr/bin/atom perl.third.config perl
15615bfd 522 atom -tool third -L. -all -gp -toolargs="-quiet -invalid -uninit heap+stack+partword+copy -min 0" perl
523
4ae3d70a 524# Pixie Perls (Tru64 and IRIX only)
525
526perl.pixie.atom.config: config.sh
527 @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
528 $(MAKE) perl.config.-g
529
530perl.pixie.atom: /usr/bin/atom perl.pixie.atom.config perl
531 atom -tool pixie -L. -all -toolargs="-quiet" perl
532
533perl.pixie.irix: perl
534 pixie perl
535
536perl.pixie: perl
537 if test -x /usr/bin/atom; then \
538 $(MAKE) perl.pixie.atom; \
539 else \
540 $(MAKE) perl.pixie.irix; \
541 fi
542
2304df62 543# This version, if specified in Configure, does ONLY those scripts which need
544# set-id emulation. Suidperl must be setuid root. It contains the "taint"
545# checks as well as the special code to validate that the script in question
546# has been invoked correctly.
547
549a6b10 548suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
f2766b05 549 $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
2304df62 550
599a829f 551!NO!SUBS!
552
553fi
554
555$spitshell >>Makefile <<'!NO!SUBS!'
556
bf0dfd28 557sperl$(OBJ_EXT): perl.c $(h)
2304df62 558 $(RMS) sperl.c
85e6fe83 559 $(LNS) perl.c sperl.c
d96ebe2e 560 $(CCCMD) -DIAMSUID sperl.c
2304df62 561 $(RMS) sperl.c
562
fec02dd3 563# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
564# test -d lib/auto || mkdir lib/auto
565#
8374d37a 566preplibrary: miniperl lib/Config.pm
cd4d8a96 567 @sh ./makedir lib/auto
a0d0e21e 568 @echo " AutoSplitting perl library"
92c28edd 569 $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
570 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
2304df62 571
75f92628 572# Take care to avoid modifying lib/Config.pm without reason
fb73857a 573# (If trying to create a new port and having problems with the configpm script,
574# try 'make minitest' and/or commenting out the tests at the end of configpm.)
06605284 575lib/Config.pm: config.sh miniperl configpm lib/re.pm
e8827f64 576 $(LDLIBPTH) ./miniperl configpm configpm.tmp
92c28edd 577 sh mv-if-diff configpm.tmp $@
2304df62 578
92c28edd 579lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
e8827f64 580 $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
92c28edd 581 sh mv-if-diff minimod.tmp $@
fed7345c 582
92c28edd 583lib/re.pm: ext/re/re.pm
ceb0239c 584 rm -f $@
92c28edd 585 cat ext/re/re.pm > $@
7cfc0d09 586
06605284 587$(plextract): miniperl lib/Config.pm
92c28edd 588 $(LDLIBPTH) ./miniperl -Ilib $@.PL
72b3d9b4 589
4755096e 590lib/lib.pm: miniperl lib/Config.pm
591 $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
592
b1a1e9f1 593extra.pods: miniperl
fec93702 594 -@test -f extra.pods && rm -f `cat extra.pods`
72b3d9b4 595 -@rm -f extra.pods
b4bc034f 596 -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
72b3d9b4 597 nx=`echo $$x | sed -e "s/README\.//"`; \
40096396 598 cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
72b3d9b4 599 echo "pod/perl"$$nx".pod" >> extra.pods ; \
600 done
40096396 601 -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
72b3d9b4 602
f556e5b9 603install-strip:
604 $(MAKE) STRIPFLAGS=-s install
605
4ad019ef 606install:
c458b76c 607 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
c77385cf 608
4ad019ef 609install-verbose:
610 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
c458b76c 611
4ad019ef 612install-silent:
8d0b2130 613 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
4ad019ef 614
615no-install:
616 $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
16d20bd9 617
b1a1e9f1 618install.perl: all installperl
6ee623d5 619 if [ -n "$(COMPILE)" ]; \
620 then \
621 cd utils; $(MAKE) compile; \
622 cd ../x2p; $(MAKE) compile; \
623 cd ../pod; $(MAKE) compile; \
83673e1f 624 else :; \
6ee623d5 625 fi
c77385cf 626 $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS)
a0d0e21e 627
b1a1e9f1 628install.man: all installman
c77385cf 629 $(LDLIBPTH) ./perl installman $(INSTALLFLAGS)
16d20bd9 630
84902520 631# XXX Experimental. Hardwired values, but useful for testing.
632# Eventually Configure could ask for some of these values.
633install.html: all installhtml
40096396 634 -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
6ee623d5 635 $(LDLIBPTH) ./perl installhtml \
84902520 636 --podroot=. --podpath=. --recurse \
637 --htmldir=$(privlib)/html \
638 --htmlroot=$(privlib)/html \
639 --splithead=pod/perlipc \
640 --splititem=pod/perlfunc \
641 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
642 --verbose
643
16d20bd9 644
a0d0e21e 645# I now supply perly.c with the kits, so the following section is
56febc5e 646# used only if you force byacc to run by saying
647# make run_byacc
648# Since we patch up the byacc output, the perly.fixer script needs
649# to run with precisely the same version of byacc as I use. You
650# normally shouldn't remake perly.[ch].
651
232e078e 652run_byacc: FORCE
56febc5e 653 $(BYACC) -d perly.y
cecd0ad1 654 -chmod 664 perly.c perly.h
56febc5e 655 sh $(shellflags) ./perly.fixer y.tab.c perly.c
55497cff 656 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
657 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
ebb99254 658 sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
55497cff 659 cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
fb73857a 660 chmod 664 vms/perly_c.vms vms/perly_h.vms
661 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
56febc5e 662
663# We don't want to regenerate perly.c and perly.h, but they might
664# appear out-of-date after a patch is applied or a new distribution is
665# made.
92c28edd 666perly.c: perly.y
b233458b 667 -@sh -c true
668
92c28edd 669perly.h: perly.y
b233458b 670 -@sh -c true
671
9fec149b 672PERLYVMS = vms/perly_c.vms vms/perly_h.vms
673
674$(PERLYVMS): perly.c perly.h vms/vms_yfix.pl
675 perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
676
bd656b61 677# No compat3.sym here since and including the 5.004_50.
e4d5a464 678# No interp.sym since 5.005_03.
22c35a8c 679SYM = global.sym globvar.sym perlio.sym pp.sym
419eaf7b 680
22c35a8c 681SYMH = perlvars.h intrpvar.h thrdvar.h
419eaf7b 682
dae78bb1 683CHMOD_W = chmod +w
684
a8581515 685# The following files are generated automatically
c83f8f39 686# keywords.pl: keywords.h
687# opcode.pl: opcode.h opnames.h pp_proto.h pp.sym
688# [* embed.pl needs pp.sym generated by opcode.pl! *]
689# embed.pl: proto.h embed.h embedvar.h global.sym objXSUB.h
690# perlapi.h perlapi.c pod/perlintern.pod
691# pod/perlapi.pod
692# bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
693# ext/B/B/Asmdata.pm
694# regcomp.pl: regnodes.h
695# warnings.pl: warnings.h lib/warnings.pm
e50aee73 696# The correct versions should be already supplied with the perl kit,
697# in case you don't have perl available.
e1354ed6 698# To force them to be regenerated, type
e50aee73 699# make regen_headers
e1354ed6 700
9fec149b 701keywords.h: keywords.pl
702 -perl keywords.pl
703
5bab1179 704OPCODE_PL_OUTPUT = opcode.h opnames.h pp_proto.h pp.sym
705
706$(OPCODE_PL_OUTPUT): opcode.pl
9fec149b 707 -perl opcode.pl
708
5bab1179 709# Really the prerequisites for the next rule should only be "embed.pl pp.sym"
710# Writing it this way gives make a big hint to always run opcode.pl before
711# embed.pl. The alternative - running embed.pl then opcode.pl causes embed.pl
712# to be re-run next make invocation, and then all object files get recompiled.
713
714proto.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 715 -perl embed.pl
716
717ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm: bytecode.pl
718 -perl bytecode.pl
719
720regnodes.h: regcomp.pl
721 -perl regcomp.pl
722
723warnings.h lib/warnings.pm: warnings.pl
724 -perl warnings.pl
725
b4d4469a 726AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
727 embed.h embedvar.h global.sym \
728 pod/perlintern.pod pod/perlapi.pod \
c83f8f39 729 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
730 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
731 warnings.h lib/warnings.pm
e1354ed6 732
e50aee73 733regen_headers: FORCE
b4d4469a 734 -$(CHMOD_W) $(AUTOGEN_FILES)
735 -perl keywords.pl
736 -perl opcode.pl
737 -perl embed.pl
738 -perl bytecode.pl
739 -perl regcomp.pl
740 -perl warnings.pl
8e07c86e 741
4755096e 742regen_pods: FORCE
743 -cd pod; $(LDLIBPTH) make regen_pods
744
9fec149b 745regen_all: $(PERLYVMS) regen_headers regen_pods
746
a0d0e21e 747# Extensions:
4318d5a0 748# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
749# automatically get built. There should ordinarily be no need to change
750# any of this part of makefile.
a0d0e21e 751#
752# The dummy dependency is a place holder in case $(dynamic_ext) or
753# $(static_ext) is empty.
754#
755# DynaLoader may be needed for extensions that use Makefile.PL.
756
757$(DYNALOADER): miniperl preplibrary FORCE
92c28edd 758 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 759
760d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
92c28edd 761 @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
a0d0e21e 762
763s_dummy $(static_ext): miniperl preplibrary $(DYNALOADER) FORCE
92c28edd 764 @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
2304df62 765
4318d5a0 766n_dummy $(nonxs_ext): miniperl preplibrary $(DYNALOADER) FORCE
92c28edd 767 @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
4318d5a0 768
17b893d8 769clean: _tidy _mopup
70af249b 770
2edbd6da 771realclean: _realcleaner _mopup
4e2a5f63 772 @echo "Note that make realclean does not delete config.sh or Policy.sh"
70af249b 773
b37ebb13 774_clobber:
4e2a5f63 775 rm -f config.sh cppstdin Policy.sh
b37ebb13 776
777clobber: _realcleaner _mopup _clobber
70af249b 778
779distclean: clobber
780
2edbd6da 781# Like distclean but also removes emacs backups and *.orig.
b37ebb13 782veryclean: _verycleaner _mopup _clobber
783 -@rm -f Obsolete Wanted
2edbd6da 784
70af249b 785# Do not 'make _mopup' directly.
786_mopup:
cd4d8a96 787 rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
72b3d9b4 788 -@test -f extra.pods && rm -f `cat extra.pods`
b4bc034f 789 -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
ac83e8b0 790 -rm -f perl.exp ext.libs extra.pods opmini.o
d96ebe2e 791 -rm -f perl.export perl.dll perl.libexp perl.map perl.def
1cfa4ec7 792 -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
bddcbb41 793 -rm -f perl.third lib*.so.perl.third perl.3log t/perl.3log
3ed3e501 794 -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts
e708dd94 795 rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
70af249b 796
797# Do not 'make _tidy' directly.
798_tidy:
e3f83878 799 -cd pod; $(LDLIBPTH) $(MAKE) clean
800 -cd utils; $(LDLIBPTH) $(MAKE) clean
801 -cd x2p; $(LDLIBPTH) $(MAKE) clean
4318d5a0 802 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
e3f83878 803 $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
a0d0e21e 804 done
6ee623d5 805 rm -f testcompile compilelog
ff68c719 806
2edbd6da 807_cleaner1:
4633a7c4 808 -cd os2; rm -f Makefile
2edbd6da 809 -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
810 -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
811 -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
4318d5a0 812 -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
2edbd6da 813 $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
a0d0e21e 814 done
2edbd6da 815
816_cleaner2:
9fba8746 817 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 818 rm -rf $(addedbyconf)
cd4d8a96 819 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
fed7345c 820 rm -f $(private)
a0d0e21e 821 rm -rf lib/auto
07a6e20d 822 rm -f lib/.exists lib/*/.exists lib/*/*/.exists
16d20bd9 823 rm -f h2ph.man pstruct
a0d0e21e 824 rm -rf .config
6ee623d5 825 rm -f testcompile compilelog
4d6dcf47 826 -rmdir lib/B lib/Data lib/Encode lib/IO/Socket lib/IO lib/Filter/Util lib/Sys lib/Thread
ecfc5424 827
2edbd6da 828_realcleaner:
829 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
830 @$(LDLIBPTH) $(MAKE) _cleaner2
831
832_verycleaner:
833 @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
834 @$(LDLIBPTH) $(MAKE) _cleaner2
c94787a5 835 -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
2edbd6da 836
2304df62 837# The following lint has practically everything turned on. Unfortunately,
838# you have to wade through a lot of mumbo jumbo that can't be suppressed.
839# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
840# for that spot.
841
bf0dfd28 842lint: $(c)
2304df62 843 lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
844
fb73857a 845# Need to unset during recursion to go out of loop.
846# The README below ensures that the dependency list is never empty and
847# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
cd4d8a96 848
84902520 849MAKEDEPEND = Makefile makedepend
cd4d8a96 850
fb73857a 851$(FIRSTMAKEFILE): README $(MAKEDEPEND)
cd4d8a96 852 $(MAKE) depend MAKEDEPEND=
a0d0e21e 853
599a829f 854config.h: config_h.SH config.sh
655635e8 855 $(SHELL) config_h.SH
856
a0d0e21e 857# When done, touch perlmain.c so that it doesn't get remade each time.
2304df62 858depend: makedepend
fb73857a 859 sh ./makedepend MAKE=$(MAKE)
a0d0e21e 860 - test -s perlmain.c && touch perlmain.c
2304df62 861 cd x2p; $(MAKE) depend
862
cd4d8a96 863# Cannot postpone this until $firstmakefile is ready ;-)
92c28edd 864makedepend: makedepend.SH config.sh
865 sh ./makedepend.SH
cd4d8a96 866
ec861bc1 867# Cannot delegate rebuilding of t/perl to make
868# to allow interlaced test and minitest
3e3baf6d 869
5fe84fd2 870_test_prep: $(PERL)$(EXE_EXT)
ec861bc1 871 cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
3e3baf6d 872
5fe84fd2 873test_prep: miniperl ./perl$(EXE_EXT) preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
874 PERL=./perl $(MAKE) _test_prep
ec861bc1 875
5fe84fd2 876_test_tty:
ec861bc1 877 cd t && $(LDLIBPTH) $(PERL_DEBUG) $(PERL) TEST $(UTF8) </dev/tty
878
5fe84fd2 879_test_notty:
ec861bc1 880 cd t && $(LDLIBPTH) $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(PERL) TEST $(UTF8)
881
882# The second branch is for testing without a tty or controlling terminal,
883# see t/op/stat.t
884_test:
994e9bc0 885 if (true </dev/tty) >/dev/null 2>&1; then \
5fe84fd2 886 $(MAKE) _test_tty; \
994e9bc0 887 else \
5fe84fd2 888 $(MAKE) _test_notty; \
994e9bc0 889 fi
a0ed51b3 890
5fe84fd2 891test check: test_prep
ec861bc1 892 PERL=./perl $(MAKE) _test
893
5fe84fd2 894test_tty: test_prep
895 PERL=./perl $(MAKE) _test_tty
ec861bc1 896
5fe84fd2 897test_notty: test_prep
898 PERL=./perl $(MAKE) _test_notty
ec861bc1 899
5fe84fd2 900utest ucheck: test_prep
ec861bc1 901 PERL=./perl UTF8=-utf8 $(MAKE) _test
902
5fe84fd2 903# Backward compat.
904
905test-tty: test_tty
906
907test-notty: test_notty
908
ec861bc1 909# Targets for Third Degree testing.
910
5fe84fd2 911test_prep.third: test_prep perl.third
912 PERL=./perl.third $(MAKE) _test_prep
ec861bc1 913
5fe84fd2 914test.third check.third: test_prep.third perl.third
ec861bc1 915 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
916
5fe84fd2 917utest.third ucheck.third: test_prep.third perl.third
ec861bc1 918 PERL=./perl.third PERL_DEBUG=PERL_3LOG=1UTF=-utf8 $(MAKE) _test
919
5fe84fd2 920test_notty.third: test_prep.third perl.third
921 PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
2304df62 922
d96ebe2e 923# Can't depend on lib/Config.pm because that might be where miniperl
924# is crashing.
a35c6d74 925minitest: miniperl lib/re.pm
d96ebe2e 926 @echo "You may see some irrelevant test failures if you have been unable"
927 @echo "to build lib/Config.pm."
cd4d8a96 928 - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
c61790a2 929 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t pragma/*.t </dev/tty
16d20bd9 930
fb73857a 931# Handy way to run perlbug -ok without having to install and run the
84902520 932# installed perlbug. We don't re-run the tests here - we trust the user.
fb73857a 933# Please *don't* use this unless all tests pass.
1d2dff63 934# If you want to report test failures, use "make nok" instead.
188cd53f 935ok: utilities
92c28edd 936 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
84902520 937
105f9295 938okfile: utilities
92c28edd 939 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
105f9295 940
890b8eb0 941oknack: utilities
942 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
943
944okfilenack: utilities
945 $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
946
1d2dff63 947nok: utilities
92c28edd 948 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1d2dff63 949
b4e8cfaf 950nokfile: utilities
951 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
952
890b8eb0 953noknack: utilities
954 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
955
956nokfilenack: utilities
957 $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
958
85e6fe83 959clist: $(c)
92c28edd 960 echo $(c) | tr ' ' $(TRNL) >.clist
2304df62 961
85e6fe83 962hlist: $(h)
92c28edd 963 echo $(h) | tr ' ' $(TRNL) >.hlist
2304df62 964
85e6fe83 965shlist: $(sh)
92c28edd 966 echo $(sh) | tr ' ' $(TRNL) >.shlist
2304df62 967
4633a7c4 968pllist: $(pl)
92c28edd 969 echo $(pl) | tr ' ' $(TRNL) >.pllist
4633a7c4 970
92c28edd 971Makefile: Makefile.SH ./config.sh
972 $(SHELL) Makefile.SH
760ac839 973
599a829f 974distcheck: FORCE
760ac839 975 perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
976
771c4874 977elc: emacs/cperl-mode.elc
978
979emacs/cperl-mode.elc: emacs/cperl-mode.el
980 -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
981
d6a255e6 982etags: TAGS
983
984TAGS: emacs/cperl-mode.elc
3ee700d1 985 sh emacs/ptags
01e22528 986
d6a255e6 987ctags: tags
988
989# Let's hope make will not go into an infinite loop on case-unsensitive systems
990# This may also fail if . is in the head of the path, since perl will
991# require -Ilib
992tags: TAGS
993 perl emacs/e2ctags.pl TAGS > tags
3ee700d1 994
2304df62 995# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
996# If this runs make out of memory, delete /usr/include lines.
997!NO!SUBS!
998
85e6fe83 999$eunicefix Makefile
2304df62 1000case `pwd` in
1001*SH)
85e6fe83 1002 $rm -f ../Makefile
cd4d8a96 1003 $ln Makefile ../Makefile
2304df62 1004 ;;
1005esac
cd4d8a96 1006$rm -f $firstmakefile
5ff3f7a4 1007
1008# Now do any special processing required before building.
1009
1010case "$ebcdic" in
1011$define)
1012 xxx=''
1013 echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
7a66b286 1014case "$osname" in
25e9a2e3 1015os390|posix-bc)
5ff3f7a4 1016 rm -f y.tab.c y.tab.h
e9d08790 1017 # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
5ff3f7a4 1018 yacc -d perly.y >/dev/null 2>&1
1019 if cmp -s y.tab.c perly.c; then
1020 rm -f y.tab.c
1021 else
1022 echo "perly.y -> perly.c" >&2
1023 mv -f y.tab.c perly.c
1024 chmod u+w perly.c
c8dba6f3 1025 sed -e '/^#include "perl\.h"/a\
1026\
1027#define yydebug PL_yydebug\
1028#define yynerrs PL_yynerrs\
1029#define yyerrflag PL_yyerrflag\
1030#define yychar PL_yychar\
c8dba6f3 1031#define yyval PL_yyval\
1032#define yylval PL_yylval' \
1033 -e '/YYSTYPE *yyval;/D' \
1034 -e '/YYSTYPE *yylval;/D' \
1035 -e '/int yychar,/,/yynerrs;/D' \
1036 -e 's/int yydebug = 0;/yydebug = 0;/' \
1037 -e 's/[^_]realloc(/PerlMem_realloc(/g' \
1038 -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
5ff3f7a4 1039 -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1040 xxx="$xxx perly.c"
1041 fi
1042 if cmp -s y.tab.h perly.h; then
1043 rm -f y.tab.h
1044 else
1045 echo "perly.y -> perly.h" >&2
1046 mv -f y.tab.h perly.h
1047 xxx="$xxx perly.h"
1048 fi
e9d08790 1049 if cd x2p
5ff3f7a4 1050 then
e9d08790 1051 rm -f y.tab.c y.tab.h
5928ee40 1052 case "$osname" in
1053 posix-bc)
1054 # we are using two different yaccs in BS2000 Posix!
1055 byacc a2p.y >/dev/null 2>&1
1056 ;;
1057 *) # e.g. os390
1058 yacc a2p.y >/dev/null 2>&1
1059 ;;
1060 esac
e9d08790 1061 if cmp -s y.tab.c a2p.c
1062 then
1063 rm -f y.tab.c
1064 else
1065 echo "a2p.y -> a2p.c" >&2
1066 mv -f y.tab.c a2p.c
1067 chmod u+w a2p.c
1068 sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
f1f802f7 1069 -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
e9d08790 1070 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1071 xxx="$xxx a2p.c"
1072 fi
1073 # In case somebody yacc -d:ed the a2p.y.
1074 if test -f y.tab.h
1075 then
1076 if cmp -s y.tab.h a2p.h
1077 then
1078 rm -f y.tab.h
1079 else
1080 echo "a2p.h -> a2p.h" >&2
1081 mv -f y.tab.h a2p.h
1082 xxx="$xxx a2p.h"
1083 fi
1084 fi
1085 cd ..
5ff3f7a4 1086 fi
7a66b286 1087 ;;
1088vmesa)
1089 # Do nothing in VM/ESA.
1090 ;;
aa34f189 1091*)
e9d08790 1092 echo "'$osname' is an EBCDIC system I don't know that well." >&4
aa34f189 1093 ;;
fe572743 1094esac
5ff3f7a4 1095 case "$xxx" in
1096 '') echo "No parser files were regenerated. That's okay." >&2 ;;
1097 esac
1098 ;;
1099esac
1100