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