source: trunk/third/perl/Makefile.SH @ 14553

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