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