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