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