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