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