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

Revision 20079, 41.5 KB checked in by zacheiss, 21 years ago (diff)
Merge with perl 5.8.3.
Line 
1#! /bin/sh
2case $PERL_CONFIG_SH in
3'')
4        if test -f config.sh
5                then TOP=.
6        else
7                echo "Can't find config.sh."; exit 1
8        fi
9        . $TOP/config.sh
10        ;;
11esac
12: This forces SH files to create target in same directory as SH file.
13: This is so that make depend always knows where to find SH derivatives.
14case "$0" in
15*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
16esac
17
18case "$d_dosuid" in
19*define*) suidperl='suidperl' ;;
20*) suidperl='';;
21esac
22
23linklibperl='$(LIBPERL)'
24shrpldflags='$(LDDLFLAGS)'
25ldlibpth=''
26DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
27case "$useshrplib" in
28true)
29        # Prefix all runs of 'miniperl' and 'perl' with
30        # $ldlibpth so that ./perl finds *this* shared libperl.
31        case "$LD_LIBRARY_PATH" in
32        '')
33                ldlibpth="LD_LIBRARY_PATH=`pwd`";;
34        *)
35                ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
36        esac
37
38        pldlflags="$cccdlflags"
39        static_target='static_pic'
40        case "${osname}${osvers}" in
41        next4*)
42                ld=libtool
43                lddlflags="-dynamic -undefined warning -framework System \
44                -compatibility_version 1 -current_version $patchlevel \
45                -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
46                ;;
47        rhapsody*|darwin*)
48                shrpldflags="${ldflags} -dynamiclib \
49                            -compatibility_version \
50                                ${api_revision}.${api_version}.${api_subversion} \
51                             -current_version \
52                                ${revision}.${patchlevel}.${subversion} \
53                             -install_name \$(shrpdir)/\$@"
54                ;;
55        cygwin*)
56                linklibperl="-lperl"
57                ;;
58        sunos*)
59                linklibperl="-lperl"
60                ;;
61        netbsd*|freebsd[234]*|openbsd*)
62                linklibperl="-L. -lperl"
63                ;;
64        aix*)
65                shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
66                case "$osvers" in
67                3*)     shrpldflags="$shrpldflags -e _nostart"
68                        ;;
69                *)      shrpldflags="$shrpldflags -b noentry"
70                        ;;
71                esac
72                shrpldflags="$shrpldflags $ldflags $perllibs $cryptlib"
73                linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
74                ;;
75        hpux*)
76                linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
77                ;;
78        os390*)
79            shrpldflags='-W l,dll'
80            linklibperl='libperl.x'
81            DPERL_EXTERNAL_GLOB=''
82            ;;
83        esac
84        case "$ldlibpthname" in
85        '') ;;
86        *)
87            case "$osname" in
88            os2)
89                ldlibpth=''
90                ;;
91            *)
92                eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
93                ;;
94            esac
95            # Strip off any trailing :'s
96            ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
97            ;;
98        esac
99
100        case "$ldlibpth" in
101        # Protect any spaces
102        *" "*) ldlibpth=`echo $ldlibpth|sed 's/ /\\\\ /g'` ;;
103        esac
104
105        case "$osname" in
106        linux)
107            # If there is a pre-existing $libperl from a previous
108            # installation, Linux needs to use LD_PRELOAD to
109            # override the LD_LIBRARY_PATH setting.  See the
110            # INSTALL file, under "Building a shared perl library".
111            # If there is no pre-existing $libperl, we don't need
112            # to do anything further.
113            if test -f $archlib/CORE/$libperl; then
114                rm -f preload
115                cat <<'EOT' > preload
116#! /bin/sh
117lib=$1
118shift
119test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
120exec "$@"
121EOT
122                chmod 755 preload
123                ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
124            fi
125            ;;
126        os390)  test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
127                ;;
128        esac
129
130        ;;
131
132*)      pldlflags=''
133        static_target='static'
134        ;;
135esac
136
137: Prepare dependency lists for Makefile.
138dynamic_list=' '
139for f in $dynamic_ext; do
140    : the dependency named here will never exist
141      base=`echo "$f" | sed 's/.*\///'`
142    dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
143done
144
145static_list=' '
146for f in $static_ext; do
147        base=`echo "$f" | sed 's/.*\///'`
148        static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
149done
150
151nonxs_list=' '
152for f in $nonxs_ext; do
153    base=`echo "$f" | sed 's/.*\///'`
154    nonxs_list="$nonxs_list ext/$f/pm_to_blib"
155done
156
157# Handle the usage of different yaccs in posix-bc (During Configure we
158# us yacc for perly.y and byacc for a2p.y.  The makefiles must use the
159# same configuration for run_byacc!):
160case "$osname" in
161    posix-bc)
162        byacc=$yacc
163        ;;
164esac
165
166echo "Extracting Makefile (with variable substitutions)"
167$spitshell >Makefile <<!GROK!THIS!
168# Makefile.SH
169# This file is derived from Makefile.SH.  Any changes made here will
170# be lost the next time you run Configure.
171#  Makefile is used to generate $firstmakefile.  The only difference
172#  is that $firstmakefile has the dependencies filled in at the end.
173#
174#
175# I now supply perly.c with the kits, so don't remake perly.c without byacc
176BYACC = $byacc
177CC = $cc
178LD = $ld
179
180LDFLAGS = $ldflags
181CLDFLAGS = $ldflags
182
183mallocsrc = $mallocsrc
184mallocobj = $mallocobj
185LNS = $lns
186# NOTE: some systems don't grok "cp -f". XXX Configure test needed?
187CPS = $cp
188RMS = rm -f
189ranlib = $ranlib
190
191# The following are mentioned only to make metaconfig include the
192# appropriate questions in Configure.  If you want to change these,
193# edit config.sh instead, or specify --man1dir=/wherever on
194# installman commandline.
195bin = $installbin
196scriptdir = $scriptdir
197shrpdir = $archlibexp/CORE
198privlib = $installprivlib
199man1dir = $man1dir
200man1ext = $man1ext
201man3dir = $man3dir
202man3ext = $man3ext
203
204# The following are used to build and install shared libraries for
205# dynamic loading.
206LDDLFLAGS = $lddlflags
207SHRPLDFLAGS = $shrpldflags
208CCDLFLAGS = $ccdlflags
209DLSUFFIX = .$dlext
210PLDLFLAGS = $pldlflags
211LIBPERL = $libperl
212LLIBPERL= $linklibperl
213SHRPENV = $shrpenv
214
215# Static targets are ordinarily built without CCCDLFLAGS.  However,
216# if building a shared libperl.so that might later be linked into
217# another application, then it might be appropriate to also build static
218# extensions (usually just DynaLoader) with relocatable code (e.g. -fPIC
219# for GNU cc).  This is handled by ext/util/make_ext.
220STATIC = $static_target
221
222# The following is used to include the current directory in
223# the dynamic loader path you are building a shared libperl.
224LDLIBPTH = $ldlibpth
225
226dynamic_ext = $dynamic_list
227static_ext = $static_list
228nonxs_ext = $nonxs_list
229ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
230DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
231
232libs = $perllibs $cryptlib
233
234public = perl\$(EXE_EXT) $suidperl utilities translators
235
236shellflags = $shellflags
237
238# This is set to  MAKE=$make if your $make command doesn't
239# do it for you.
240$make_set_make
241
242# Mention $gmake here so it gets probed for by Configure.
243
244# These variables may need to be manually set for non-Unix systems.
245AR = $full_ar
246EXE_EXT = $_exe
247LIB_EXT = $_a
248OBJ_EXT = $_o
249PATH_SEP = $p_
250
251FIRSTMAKEFILE = $firstmakefile
252
253# Any special object files needed by this architecture, e.g. os2/os2.obj
254ARCHOBJS = $archobjs
255
256.SUFFIXES: .c \$(OBJ_EXT) .i .s
257
258# grrr
259SHELL = $sh
260
261# how to tr(anslate) newlines
262TRNL = '$trnl'
263
264OPTIMIZE = $optimize
265
266EXTRAS = $extras
267
268INSTALLPREFIXEXP = $prefix
269
270!GROK!THIS!
271# not used by Makefile but by installperl;
272# mentioned here so that metaconfig picks these up
273# $installusrbinperl
274# $versiononly
275
276case "${osname}:${osvers}" in
277darwin:*)
278$spitshell >>Makefile <<EOF
279
280# Your locales are broken (osname $osname, osvers $osvers)
281# and to avoid the numerous
282# perl: warning: Setting locale failed.
283# warnings during the build process we reset the locale variables.
284
285LC_ALL=C
286LANG=C
287LANGUAGE=C
288EOF
289        ;;
290esac
291
292## In the following dollars and backticks do not need the extra backslash.
293$spitshell >>Makefile <<'!NO!SUBS!'
294
295CCCMD    = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
296
297CCCMDSRC = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $<`
298
299private = preplibrary lib/Config.pm lib/ExtUtils/Miniperl.pm
300
301# Files to be built with variable substitution before miniperl
302# is available.
303sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
304        makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
305
306shextract = Makefile cflags config.h makeaperl makedepend \
307        makedir myconfig writemain pod/Makefile
308
309# Files to be built with variable substitution after miniperl is
310# available.  Dependencies handled manually below (for now).
311
312pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
313        pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
314
315# lib/lib.pm is not listed here because it has a rule of its own.
316plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
317        pod/pod2usage pod/podchecker pod/podselect
318
319addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
320
321h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
322h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h opcode.h
323h3 = pad.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
324h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
325h5 = utf8.h warnings.h
326h = $(h1) $(h2) $(h3) $(h4) $(h5)
327
328c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c reentr.c
329c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
330c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c pad.c
331c4 = globals.c perlio.c perlapi.c numeric.c locale.c pp_pack.c pp_sort.c
332
333c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
334
335obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) pad$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT) reentr$(OBJ_EXT)
336obj2 = 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)
337obj3 = 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) numeric$(OBJ_EXT) locale$(OBJ_EXT) pp_pack$(OBJ_EXT) pp_sort$(OBJ_EXT)
338
339obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
340
341lintflags = -hbvxac
342
343.c$(OBJ_EXT):
344        $(CCCMD) $(PLDLFLAGS) $*.c
345
346.c.i:
347        $(CCCMDSRC) -E $*.c > $*.i
348
349.c.s:
350        $(CCCMDSRC) -S $*.c
351
352all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
353        @echo " ";
354        @echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
355
356.PHONY: all compile translators utilities
357
358compile: all
359        echo "testing compilation" > testcompile;
360        cd utils;  $(MAKE) compile;
361        cd x2p; $(MAKE) compile;
362        cd pod; $(MAKE) compile;
363
364translators:    miniperl$(EXE_EXT) lib/Config.pm FORCE
365        @echo " "; echo "       Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
366
367utilities:      miniperl$(EXE_EXT) lib/Config.pm $(plextract) lib/lib.pm FORCE
368        @echo " "; echo "       Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
369
370
371# This is now done by installman only if you actually want the man pages.
372#       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
373
374# Phony target to force checking subdirectories.
375# Apparently some makes require an action for the FORCE target.
376.PHONY: FORCE
377FORCE:
378        @sh -c true
379!NO!SUBS!
380$spitshell >>Makefile <<!GROK!THIS!
381
382# We do a copy of the op.c instead of a symlink because gcc gets huffy
383# if we have a symlink forest to another disk (it complains about too many
384# levels of symbolic links, even if we have only two)
385
386opmini\$(OBJ_EXT): op.c config.h
387        \$(RMS) opmini.c
388        \$(CPS) op.c opmini.c
389        \$(CCCMD) \$(PLDLFLAGS) $DPERL_EXTERNAL_GLOB opmini.c
390        \$(RMS) opmini.c
391
392!GROK!THIS!
393$spitshell >>Makefile <<'!NO!SUBS!'
394miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
395        $(CCCMD) $(PLDLFLAGS) $*.c
396
397perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
398        sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
399        sh mv-if-diff writemain.tmp perlmain.c
400
401!NO!SUBS!
402case "$osname" in
403cygwin)
404        ;; # Let cygwin/Makefile.SHs do its work.
405*)
406        $spitshell >>Makefile <<'!NO!SUBS!'
407perlmain$(OBJ_EXT): perlmain.c
408        $(CCCMD) $(PLDLFLAGS) $*.c
409
410!NO!SUBS!
411        ;;
412esac
413$spitshell >>Makefile <<'!NO!SUBS!'
414# The file ext.libs is a list of libraries that must be linked in
415# for static extensions, e.g. -lm -lgdbm, etc.  The individual
416# static extension Makefile's add to it.
417ext.libs: $(static_ext)
418        -@test -f ext.libs || touch ext.libs
419
420!NO!SUBS!
421
422# How to build libperl.  This is still rather convoluted.
423# Load up custom Makefile.SH fragment for shared loading and executables:
424case "$osname" in
425*)
426        Makefile_s="$osname/Makefile.SHs"
427        ;;
428esac
429
430case "$osname" in
431aix)
432        $spitshell >>Makefile <<!GROK!THIS!
433LIBS                    = $perllibs
434# In AIX we need to change this for building Perl itself from
435# its earlier definition (which is for building external
436# extensions *after* Perl has been built and installed)
437CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
438
439!GROK!THIS!
440        case "$useshrplib" in
441        define|true|[yY]*)
442                $spitshell >>Makefile <<'!NO!SUBS!'
443
444LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
445MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
446
447$(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
448        $(RMS) $(LIBPERL_NONSHR)
449        $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
450
451$(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
452        $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
453            opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
454
455MINIPERLEXP             = $(MINIPERL_NONSHR)
456
457LIBPERLEXPORT           = perl.exp
458
459!NO!SUBS!
460               
461                ;;
462        *)     
463                $spitshell >>Makefile <<'!NO!SUBS!'
464MINIPERLEXP             = miniperl$(EXE_EXT)
465
466PERLEXPORT              = perl.exp
467
468!NO!SUBS!
469        ;;
470        esac
471        $spitshell >>Makefile <<'!NO!SUBS!'
472perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
473        ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp.tmp
474        sh mv-if-diff perl.exp.tmp perl.exp
475
476!NO!SUBS!
477        ;;
478os2)
479        $spitshell >>Makefile <<'!NO!SUBS!'
480MINIPERLEXP             = miniperl
481
482perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
483        ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl.exp.tmp
484        sh mv-if-diff perl.exp.tmp perl5.def
485
486!NO!SUBS!
487        ;;
488esac
489
490if test -r $Makefile_s ; then
491        . $Makefile_s
492        $spitshell >>Makefile <<!GROK!THIS!
493
494Makefile: $Makefile_s
495!GROK!THIS!
496else
497        $spitshell >>Makefile <<'!NO!SUBS!'
498$(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
499!NO!SUBS!
500        case "$useshrplib" in
501        true)
502                $spitshell >>Makefile <<'!NO!SUBS!'
503        $(LD) -o $@ $(SHRPLDFLAGS) perl$(OBJ_EXT) $(obj) $(libs)
504!NO!SUBS!
505                case "$osname" in
506                aix)
507                        $spitshell >>Makefile <<'!NO!SUBS!'
508        rm -f libperl$(OBJ_EXT)
509        mv $@ libperl$(OBJ_EXT)
510        $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
511!NO!SUBS!
512                        ;;
513                esac
514                ;;
515        *)
516                $spitshell >>Makefile <<'!NO!SUBS!'
517        rm -f $(LIBPERL)
518        $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
519        @$(ranlib) $(LIBPERL)
520!NO!SUBS!
521                ;;
522        esac
523        $spitshell >>Makefile <<'!NO!SUBS!'
524
525# How to build executables.
526
527# The $& notation tells Sequent machines that it can do a parallel make,
528# and is harmless otherwise.
529# The miniperl -w -MExporter line is a basic cheap test to catch errors
530# before make goes on to run preplibrary and then MakeMaker on extensions.
531# This is very handy because later errors are often caused by miniperl
532# build problems but that's not obvious to the novice.
533# The Module used here must not depend on Config or any extensions.
534
535!NO!SUBS!
536
537        case "${osname}${osvers}" in
538        aix*)
539                $spitshell >>Makefile <<'!NO!SUBS!'
540miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
541        $(CC) -o miniperl $(CLDFLAGS) \
542            `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
543            miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
544        $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
545!NO!SUBS!
546                ;;
547        beos*|next4*)
548                $spitshell >>Makefile <<'!NO!SUBS!'
549miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
550        $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
551            miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
552        $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
553!NO!SUBS!
554                ;;
555        darwin*)
556                case "$osvers" in
557                [1-6].*) ;;
558                *) case "$ldflags" in
559                    *"-flat_namespace"*) ;;
560                    *) # to allow opmini.o to override stuff in libperl.dylib
561                $spitshell >>Makefile <<!NO!SUBS!
562NAMESPACEFLAGS = -force_flat_namespace
563!NO!SUBS!
564                       ;;
565                    esac
566                    ;;
567                esac
568                $spitshell >>Makefile <<'!NO!SUBS!'
569miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
570        -@rm -f miniperl.xok
571        $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o miniperl \
572            miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
573        $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
574!NO!SUBS!
575                ;;
576        *)
577                $spitshell >>Makefile <<'!NO!SUBS!'
578miniperl$(EXE_EXT): $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
579        -@rm -f miniperl.xok
580        $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl \
581            miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
582        $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
583!NO!SUBS!
584                ;;
585        esac
586
587        $spitshell >>Makefile <<'!NO!SUBS!'
588
589perl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
590        -@rm -f miniperl.xok
591        $(SHRPENV) $(LDLIBPTH) $(CC) -o perl$(PERL_SUFFIX) $(PERL_PROFILE_LDFLAGS) $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
592
593# Purify/Quantify Perls.
594
595pureperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
596        $(SHRPENV) $(LDLIBPTH) purify $(CC) -o pureperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
597
598purecovperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
599        $(SHRPENV) $(LDLIBPTH) purecov $(CC) -o purecovperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
600
601quantperl$(EXE_EXT): $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
602        $(SHRPENV) $(LDLIBPTH) quantify $(CC) -o quantperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
603
604# Valgrind perl (currently Linux only)
605
606perl.valgrind.config: config.sh
607        @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..."
608        @$(MAKE) perl.config.dashg
609        @echo "Checking usemymalloc='n' in config.sh..."
610        @grep "^usemymalloc="    config.sh
611        @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
612        @echo "And of course you have to have valgrind..."
613        valgrind ./perl -e 1 2>/dev/null || exit 1
614
615# Third Degree Perl (Tru64 only)
616
617perl.config.dashg:
618        @echo "Checking optimize='-g' in config.sh..."
619        @grep "^optimize="     config.sh
620        @grep "^optimize='-g'" config.sh >/dev/null || exit 1
621
622perl.third.config: config.sh
623        @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..."
624        @$(MAKE) perl.config.dashg
625        @echo "Checking usemymalloc='n' in config.sh..."
626        @grep "^usemymalloc="    config.sh
627        @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1
628
629perl.third: /usr/bin/atom perl.third.config perl
630        atom -tool third -L. -all -gp -toolargs="-invalid -uninit heap+stack+copy -min 0" perl
631        @echo "Now you may run perl.third and then study perl.3log."
632
633# Pixie Perls (Tru64 and IRIX only)
634
635perl.pixie.config: config.sh
636        @echo "To build perl.pixie you must Configure -Doptimize=-g, checking..."
637        @$(MAKE) perl.config.dashg
638
639perl.pixie.atom: /usr/bin/atom perl
640        atom -tool pixie -L. -all -toolargs="-quiet" perl
641
642perl.pixie.irix: perl
643        pixie perl
644
645perl.pixie: /usr/bin/pixie perl.pixie.config perl
646        if test -x /usr/bin/atom; then \
647          $(MAKE) perl.pixie.atom; \
648        else \
649          $(MAKE) perl.pixie.irix; \
650        fi
651        @echo "Now you may run perl.pixie and then run pixie."
652
653# Gprof Perl
654
655perl.config.dashpg:
656        @echo "Checking optimize='-pg' in config.sh..."
657        @grep "^optimize="      config.sh
658        @grep "^optimize='.*-pg.*'" config.sh >/dev/null || exit 1
659
660perl.gprof.config: config.sh
661        @echo "To build perl.gprof you must Configure -Doptimize=-pg, checking..."
662        @$(MAKE) perl.config.dashpg
663
664perl.gprof: /usr/bin/gprof perl.gprof.config
665        @-rm -f perl
666        $(MAKE) PERL_SUFFIX=.gprof PERL_PROFILE_LDFLAGS=-pg perl
667        @echo "Now you may run perl.gprof and then run gprof perl.gprof."
668
669# Gcov Perl
670
671perl.config.gcov:
672        @echo "To build perl.gcov you must use gcc 3.0 or newer, checking..."
673        @echo "Checking gccversion in config.sh..."
674        @grep "^gccversion="      config.sh
675        @grep "^gccversion='[3-9]\." config.sh >/dev/null || exit 1
676        @echo "To build perl.gcov you must Configure -Dccflags=-fprofile-arcs -ftest-coverage, checking..."
677        @echo "Checking ccflags='-fprofile-arcs -ftest-coverage' in config.sh..."
678        @grep "^ccflags="      config.sh
679        @grep "^ccflags='.*-fprofile-arcs -ftest-coverage.*'" config.sh >/dev/null || exit 1
680
681perl.gcov: perl.config.gcov
682        @-rm -f perl
683        $(MAKE) PERL_SUFFIX=.gcov PERL_PROFILE_LDFLAGS='' perl
684        @echo "Now you may run perl.gcov and then run gcov some.c."
685
686# Microperl.  This is just a convenience thing if one happens to
687# build also the full Perl and therefore the real big Makefile:
688# usually one should manually explicitly issue the below command.
689
690.PHONY: microperl
691microperl:
692        $(MAKE) -f Makefile.micro
693
694# This version, if specified in Configure, does ONLY those scripts which need
695# set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
696# checks as well as the special code to validate that the script in question
697# has been invoked correctly.
698
699suidperl$(EXE_EXT): $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
700        $(SHRPENV) $(LDLIBPTH) $(CC) -o suidperl $(CLDFLAGS) $(CCDLFLAGS) perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
701
702!NO!SUBS!
703
704fi
705
706$spitshell >>Makefile <<'!NO!SUBS!'
707
708sperl$(OBJ_EXT): perl.c $(h)
709        $(RMS) sperl.c
710        $(LNS) perl.c sperl.c
711        $(CCCMD) -DIAMSUID sperl.c
712        $(RMS) sperl.c
713
714# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
715#       test -d lib/auto || mkdir lib/auto
716# We need to autosplit in two steps because VOS can't handle so many args
717#
718.PHONY: preplibrary
719preplibrary: miniperl$(EXE_EXT) lib/Config.pm lib/lib.pm $(PREPLIBRARY_LIBPERL)
720        @sh ./makedir lib/auto
721        @echo " AutoSplitting perl library"
722        $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
723                autosplit_lib_modules(@ARGV)' lib/*.pm
724        $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
725                autosplit_lib_modules(@ARGV)' lib/*/*.pm
726        $(MAKE) lib/re.pm
727
728# Take care to avoid modifying lib/Config.pm without reason
729# (If trying to create a new port and having problems with the configpm script,
730# try 'make minitest' and/or commenting out the tests at the end of configpm.)
731lib/Config.pm: config.sh miniperl$(EXE_EXT) configpm Porting/Glossary
732        $(LDLIBPTH) ./miniperl -Ilib configpm configpm.tmp
733        sh mv-if-diff configpm.tmp $@
734
735lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl$(EXE_EXT) minimod.pl lib/Config.pm
736        $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
737        sh mv-if-diff minimod.tmp $@
738        -touch lib/ExtUtils/Miniperl.pm
739
740lib/re.pm: ext/re/re.pm
741        cp ext/re/re.pm ext/re/re.tmp && sh mv-if-diff ext/re/re.tmp lib/re.pm
742
743$(plextract):   miniperl$(EXE_EXT) lib/Config.pm x2p/s2p
744        @-rm -f $@
745        $(LDLIBPTH) ./miniperl -Ilib $@.PL
746
747x2p/s2p: miniperl$(EXE_EXT) lib/Config.pm x2p/s2p.PL
748        cd x2p; $(LDLIBPTH) $(MAKE) s2p
749
750lib/lib.pm:     miniperl$(EXE_EXT) lib/Config.pm
751        @-rm -f $@
752        $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
753
754extra.pods: miniperl$(EXE_EXT)
755        -@test -f extra.pods && rm -f `cat extra.pods`
756        -@rm -f extra.pods
757        -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
758            nx=`echo $$x | sed -e "s/README\.//"`; \
759            cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
760            echo "pod/perl"$$nx".pod" >> extra.pods ; \
761        done
762        -@rm -f pod/perlvms.pod
763        -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
764        -@rm -f pod/perldelta.pod
765        -@test -f pod/perl583delta.pod && cd pod && $(LNS) perl583delta.pod perldelta.pod && cd .. && echo "pod/perldelta.pod" >> extra.pods
766
767extras.make: perl$(EXE_EXT)
768        -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&make(@ARGV)' `cat extras.lst`
769
770extras.test: perl$(EXE_EXT)
771        -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&test(@ARGV)' `cat extras.lst`
772
773extras.install: perl$(EXE_EXT)
774        -@test -s extras.lst && PATH="`pwd`:${PATH}" PERL5LIB="`pwd`/lib" $(LDLIBPTH) ./perl -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst`
775
776.PHONY: install install-strip install-all install-verbose install-silent \
777        no-install install.perl install.man install.html
778
779META.yml:       Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm
780        $(LDLIBPTH) ./miniperl -Ilib Porting/makemeta
781
782install-strip:
783        $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)"
784
785install install-all:
786        $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)"
787
788install-verbose:
789        $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)"
790
791install-silent:
792        $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)"
793
794no-install:
795        $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)"
796
797# Set this to an empty string to avoid an attempt of rebuild before install
798INSTALL_DEPENDENCE = all
799
800install.perl:   $(INSTALL_DEPENDENCE) installperl
801        if [ -n "$(COMPILE)" ]; \
802        then \
803                cd utils; $(MAKE) compile; \
804                cd ../x2p; $(MAKE) compile; \
805                cd ../pod; $(MAKE) compile; \
806        else :; \
807        fi
808        $(LDLIBPTH) ./perl installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
809        $(MAKE) extras.install
810
811install.man:    all installman
812        $(LDLIBPTH) ./perl installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
813
814# XXX Experimental. Hardwired values, but useful for testing.
815# Eventually Configure could ask for some of these values.
816install.html: all installhtml
817        -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
818        $(LDLIBPTH) ./perl installhtml                   \
819      --podroot=. --podpath=. --recurse  \
820      --htmldir=$(privlib)/html     \
821      --htmlroot=$(privlib)/html    \
822      --splithead=pod/perlipc     \
823      --splititem=pod/perlfunc    \
824      --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
825      --verbose
826
827
828# I now supply perly.c with the kits, so the following section is
829# used only if you force byacc to run by saying
830#       make run_byacc
831# Since we patch up the byacc output, the perly.fixer script needs
832# to run with precisely the same version of byacc as I use.  You
833# normally shouldn't remake perly.[ch].
834
835.PHONY: check_byacc run_byacc
836
837check_byacc:
838        @$(BYACC) -V 2>&1 | grep 'version 1\.8\.2'
839
840run_byacc:      FORCE check_byacc
841        $(BYACC) -d perly.y
842        -chmod 664 perly.c perly.h
843        sh $(shellflags) ./perly.fixer y.tab.c perly.c
844        sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
845            -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
846        sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
847        cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
848        perl -i.old perlyline.pl perly.c
849        chmod 664 vms/perly_c.vms vms/perly_h.vms
850        perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
851
852# We don't want to regenerate perly.c and perly.h, but they might
853# appear out-of-date after a patch is applied or a new distribution is
854# made.
855perly.c: perly.y
856        -@sh -c true
857
858perly.h: perly.y
859        -@sh -c true
860
861PERLYVMS = vms/perly_c.vms vms/perly_h.vms
862
863$(PERLYVMS):    perly.c perly.h vms/vms_yfix.pl
864        perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
865
866# No compat3.sym here since and including the 5.004_50.
867# No interp.sym since 5.005_03.
868SYM  = global.sym globvar.sym perlio.sym pp.sym
869
870SYMH = perlvars.h intrpvar.h thrdvar.h
871
872CHMOD_W = chmod +w
873
874# The following files are generated automatically
875#       autodoc.pl:     pod/perlapi.pod pod/perlintern.pod
876#       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
877#                       ext/B/B/Asmdata.pm
878#       embed.pl:       proto.h embed.h embedvar.h global.sym
879#                       perlapi.h perlapi.c
880# [* embed.pl needs pp.sym generated by opcode.pl! *]
881#       keywords.pl:    keywords.h
882#       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
883#       regcomp.pl:     regnodes.h
884#       warnings.pl:    warnings.h lib/warnings.pm
885# The correct versions should be already supplied with the perl kit,
886# in case you don't have perl available.
887# To force them to be regenerated, run
888#       perl regen.pl
889# with your existing copy of perl
890# (make regen_headers is kept for backwards compatibility)
891
892AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
893                embed.h embedvar.h global.sym \
894                pod/perlintern.pod pod/perlapi.pod \
895                perlapi.h perlapi.c ext/ByteLoader/byterun.h \
896                ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
897                warnings.h lib/warnings.pm
898
899.PHONY: regen_headers regen_pods regen_all
900
901regen regen_headers:    FORCE
902        -perl regen.pl
903
904regen_pods:     FORCE
905        -cd pod; $(LDLIBPTH) $(MAKE) regen_pods
906
907regen_all: $(PERLYVMS) regen regen_pods
908
909.PHONY: manisort manicheck
910
911manisort:       FORCE
912        LC_ALL=C sort -fdc MANIFEST || (echo "WARNING: re-sorting MANIFEST"; \
913                LC_ALL=C sort -fdo MANIFEST MANIFEST)
914
915manicheck:      FORCE
916        perl Porting/manicheck
917
918# Extensions:
919# Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
920# automatically get built.  There should ordinarily be no need to change
921# any of this part of makefile.
922#
923# The dummy dependency is a place holder in case $(dynamic_ext) or
924# $(static_ext) is empty.
925#
926# DynaLoader may be needed for extensions that use Makefile.PL.
927
928$(DYNALOADER):  miniperl$(EXE_EXT) preplibrary FORCE
929        @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
930
931d_dummy $(dynamic_ext): miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
932        @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
933
934s_dummy $(static_ext):  miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
935        @$(LDLIBPTH) sh ext/util/make_ext $(STATIC) $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
936
937n_dummy $(nonxs_ext):   miniperl$(EXE_EXT) preplibrary $(DYNALOADER) FORCE
938        @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
939
940.PHONY: clean _tidy _mopup _cleaner1 _cleaner2 \
941        realclean _realcleaner clobber _clobber \
942        distclean veryclean _verycleaner
943
944clean:          _tidy _mopup
945
946realclean:      _realcleaner _mopup
947        @echo "Note that '$(MAKE) realclean' does not delete config.sh or Policy.sh"
948
949_clobber:
950        -@rm -f Cross/run-* Cross/to-* Cross/from-*
951        rm -f config.sh cppstdin Policy.sh extras.lst
952
953clobber:        _realcleaner _mopup _clobber
954
955distclean:      clobber
956
957# Like distclean but also removes emacs backups and *.orig.
958veryclean:      _verycleaner _mopup _clobber
959        -@rm -f Obsolete Wanted
960
961# Do not 'make _mopup' directly.
962_mopup:
963        rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
964        -rmdir .depending
965        -@test -f extra.pods && rm -f `cat extra.pods`
966        -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
967        -rm -f perl.exp ext.libs extra.pods opmini.o
968        -rm -f perl.export perl.dll perl.libexp perl.map perl.def
969        -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
970        -rm -f perl.third lib*.so.perl.third perl.3log t/perl.third t/perl.3log
971        -rm -f perl.pixie lib*.so.perl.pixie lib*.so.Addrs
972        -rm -f perl.Addrs perl.Counts t/perl.Addrs t/perl.Counts *perl.xok
973        -rm -f perlld cygwin.c ld2 libperl*.def libperl*.dll cygperl*.dll *.exe.stackdump
974        -rm -f perl$(EXE_EXT) suidperl$(EXE_EXT) miniperl$(EXE_EXT) $(LIBPERL) libperl.* microperl
975        -rm -f opcode.h-old opnames.h-old pp.sym-old pp_proto.h-old
976
977# Do not 'make _tidy' directly.
978_tidy:
979        -cd pod; $(LDLIBPTH) $(MAKE) clean
980        -cd utils; $(LDLIBPTH) $(MAKE) clean
981        -cd x2p; $(LDLIBPTH) $(MAKE) clean
982        -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
983        $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
984        done
985        rm -f testcompile compilelog
986
987_cleaner1:
988        -cd os2; rm -f Makefile
989        -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
990        -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
991        -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
992        -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
993        $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
994        done
995
996# Some systems do not support "?", so keep these files separate.
997_cleaner2:
998        -rm -f core.*perl.*.? t/core.perl.*.? .?*.c
999        rm -f core *perl.core t/core t/*perl.core
1000        rm -f t/misctmp* t/forktmp* t/tmp* t/c t/perl$(EXE_EXT) t/rantests
1001        rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
1002        rm -rf $(addedbyconf)
1003        rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
1004        rm -f $(private) lib/Config.pod
1005        rm -rf lib/auto
1006        rm -f lib/.exists lib/*/.exists lib/*/*/.exists
1007        rm -f h2ph.man pstruct
1008        rm -rf .config
1009        rm -f preload
1010        rm -f testcompile compilelog
1011        -rmdir lib/B lib/Data lib/Digest
1012        rm -rf lib/Encode
1013        -rmdir lib/Filter/Util lib/IO/Socket lib/IO
1014        -rmdir lib/List lib/MIME lib/Scalar lib/Sys
1015        -rmdir lib/threads lib/XS
1016
1017_realcleaner:
1018        @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
1019        @$(LDLIBPTH) $(MAKE) _cleaner2
1020
1021_verycleaner:
1022        @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
1023        @$(LDLIBPTH) $(MAKE) _cleaner2
1024        -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
1025
1026# The following lint has practically everything turned on.  Unfortunately,
1027# you have to wade through a lot of mumbo jumbo that can't be suppressed.
1028# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
1029# for that spot.
1030
1031.PHONY: lint
1032lint: $(c)
1033        lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
1034
1035# Need to unset during recursion to go out of loop.
1036# The README below ensures that the dependency list is never empty and
1037# that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
1038
1039MAKEDEPEND = Makefile makedepend
1040
1041$(FIRSTMAKEFILE):       README $(MAKEDEPEND)
1042        $(MAKE) depend MAKEDEPEND=
1043
1044config.h: config_h.SH config.sh
1045        $(SHELL) config_h.SH
1046
1047# When done, touch perlmain.c so that it doesn't get remade each time.
1048.PHONY: depend
1049depend: makedepend
1050        sh ./makedepend MAKE=$(MAKE)
1051        - test -s perlmain.c && touch perlmain.c
1052        cd x2p; $(MAKE) depend
1053
1054# Cannot postpone this until $firstmakefile is ready ;-)
1055makedepend: makedepend.SH config.sh
1056        sh ./makedepend.SH
1057
1058.PHONY: test check test_prep test_prep_nodll test_prep_pre _test_prep \
1059        test_tty test-tty _test_tty test_notty test-notty _test_notty \
1060        utest ucheck test.utf8 check.utf8 test.torture torturetest \
1061        test.third check.third utest.third ucheck.third test_notty.third \
1062        test.deparse test_notty.deparse test_harness test_harness_notty \
1063        test.bytecompile minitest coretest test.taintwarn
1064
1065# Cannot delegate rebuilding of t/perl to make
1066# to allow interlaced test and minitest
1067
1068TESTFILE=TEST
1069
1070_test_prep:
1071        cd t && (rm -f $(PERL)$(EXE_EXT); $(LNS) ../$(PERL)$(EXE_EXT) $(PERL)$(EXE_EXT))
1072
1073# Architecture-neutral stuff:
1074
1075test_prep_pre: preplibrary utilities $(nonxs_ext)
1076
1077test_prep: test_prep_pre miniperl$(EXE_EXT) perl$(EXE_EXT) $(dynamic_ext) $(TEST_PERL_DLL)
1078        PERL=./perl $(MAKE) _test_prep
1079
1080_test_tty:
1081        cd t && $(PERL_DEBUG) $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS) </dev/tty
1082
1083_test_notty:
1084        cd t && $(PERL_DEBUG) PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) $(PERL) $(TESTFILE) $(TEST_ARGS)
1085
1086# The second branch is for testing without a tty or controlling terminal,
1087# see t/op/stat.t
1088_test:
1089        if (true </dev/tty) >/dev/null 2>&1; then \
1090          $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_tty   ; \
1091        else \
1092          $(MAKE) TEST_ARGS=$(TEST_ARGS) TESTFILE=$(TESTFILE) _test_notty ; \
1093        fi
1094        @echo "Ran tests" > t/rantests
1095
1096test check: test_prep
1097        PERL=./perl $(MAKE) _test
1098
1099test_tty: test_prep
1100        PERL=./perl $(MAKE) _test_tty
1101
1102test_notty: test_prep
1103        PERL=./perl $(MAKE) _test_notty
1104
1105utest ucheck test.utf8 check.utf8: test_prep
1106        PERL=./perl TEST_ARGS=-utf8 $(MAKE) _test
1107
1108coretest: test_prep
1109        PERL=./perl TEST_ARGS=-core $(MAKE) _test
1110
1111test-prep:      test_prep
1112
1113test-tty:       test_tty
1114
1115test-notty:     test_notty
1116
1117# Torture testing
1118
1119test.torture torturetest:       test_prep
1120        PERL=./perl TEST_ARGS=-torture $(MAKE) _test
1121
1122# Targets for valgrind testing:
1123
1124test_prep.valgrind: test_prep perl.valgrind
1125        PERL=./perl $(MAKE) _test_prep
1126
1127test.valgrind check.valgrind:   test_prep perl.valgrind.config
1128        PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 $(MAKE) _test
1129
1130utest.valgrind ucheck.valgrind: test_prep.valgrind perl.valgrind
1131        PERL=./perl PERL_DEBUG=PERL_VALGRIND=1 TEST_ARGS=-utf8 $(MAKE) _test
1132
1133test_notty.valgrind: test_prep.valgrind perl.valgrind
1134        PERL=./perl $(MAKE) PERL_DEBUG=PERL_VALGRIND=1 _test_notty
1135
1136# Targets for Third Degree testing.
1137
1138test_prep.third: test_prep perl.third
1139        PERL=./perl.third $(MAKE) _test_prep
1140
1141test.third check.third: test_prep.third perl.third
1142        PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 $(MAKE) _test
1143
1144utest.third ucheck.third: test_prep.third perl.third
1145        PERL=./perl.third PERL_DEBUG=PERL_3LOG=1 TEST_ARGS=-utf8 $(MAKE) _test
1146
1147test_notty.third: test_prep.third perl.third
1148        PERL=./perl.third $(MAKE) PERL_DEBUG=PERL_3LOG=1 _test_notty
1149
1150# Targets for Bytecode/ByteLoader testing.
1151
1152test.bytecompile:       test_prep
1153        PERL=./perl TEST_ARGS=-bytecompile $(MAKE) _test
1154
1155# Targets for Deparse testing.
1156
1157test.deparse:   test_prep
1158        PERL=./perl TEST_ARGS=-deparse $(MAKE) _test
1159
1160test_notty.deparse:     test_prep
1161        PERL=./perl TEST_ARGS=-deparse $(MAKE) _test_notty
1162
1163# Targets to run the test suite with -t
1164
1165test.taintwarn: test_prep
1166        PERL=./perl TEST_ARGS=-taintwarn $(MAKE) _test
1167
1168# Can't depend on lib/Config.pm because that might be where miniperl
1169# is crashing.
1170minitest: miniperl$(EXE_EXT) lib/re.pm
1171        -@test -f lib/lib.pm && test -f lib/Config.pm || \
1172          $(MAKE) lib/Config.pm lib/lib.pm
1173        @echo " "
1174        @echo "You may see some irrelevant test failures if you have been unable"
1175        @echo "to build lib/Config.pm or lib/lib.pm."
1176        @echo " "
1177        - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
1178                && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t uni/*.t
1179
1180# Test via harness
1181
1182test_harness: test_prep
1183        PERL=./perl $(MAKE) TESTFILE=harness _test
1184
1185test_harness_notty: test_prep
1186        PERL=./perl HARNESS_NOTTY=1 $(MAKE) TESTFILE=harness _test
1187
1188# Handy way to run perlbug -ok without having to install and run the
1189# installed perlbug. We don't re-run the tests here - we trust the user.
1190# Please *don't* use this unless all tests pass.
1191# If you want to report test failures, use "make nok" instead.
1192
1193.PHONY: ok okfile oknack okfilenack nok nokfile noknack nokfilenack
1194
1195ok:     utilities
1196        $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
1197
1198okfile: utilities
1199        $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
1200
1201oknack: utilities
1202        $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -A
1203
1204okfilenack:     utilities
1205        $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok -A
1206
1207nok:    utilities
1208        $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
1209
1210nokfile:        utilities
1211        $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
1212
1213noknack:        utilities
1214        $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -A
1215
1216nokfilenack:    utilities
1217        $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok -A
1218
1219.PHONY: clist hlist shlist pllist
1220
1221clist:  $(c)
1222        echo $(c) | tr ' ' $(TRNL) >.clist
1223
1224hlist:  $(h)
1225        echo $(h) | tr ' ' $(TRNL) >.hlist
1226
1227shlist: $(sh)
1228        echo $(sh) | tr ' ' $(TRNL) >.shlist
1229
1230pllist: $(pl)
1231        echo $(pl) | tr ' ' $(TRNL) >.pllist
1232
1233Makefile: Makefile.SH ./config.sh
1234        $(SHELL) Makefile.SH
1235
1236.PHONY: distcheck
1237distcheck: FORCE
1238        perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
1239
1240.PHONY: elc
1241elc:    emacs/cperl-mode.elc
1242
1243emacs/cperl-mode.elc: emacs/cperl-mode.el
1244        -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
1245
1246.PHONY: etags ctags tags
1247
1248etags:  TAGS
1249
1250TAGS: emacs/cperl-mode.elc
1251        sh emacs/ptags
1252
1253ctags:  tags
1254
1255# Let's hope make will not go into an infinite loop on case-unsensitive systems
1256# This may also fail if . is in the head of the path, since perl will
1257# require -Ilib
1258tags:   TAGS
1259        perl emacs/e2ctags.pl TAGS > tags
1260
1261# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
1262# If this runs make out of memory, delete /usr/include lines.
1263!NO!SUBS!
1264
1265$eunicefix Makefile
1266case `pwd` in
1267*SH)
1268    $rm -f ../Makefile
1269    $ln Makefile ../Makefile
1270    ;;
1271esac
1272$rm -f $firstmakefile
1273
1274# Now do any special processing required before building.
1275
1276case "$ebcdic" in
1277define)
1278    xxx=''
1279    echo "This is an EBCDIC system, checking if any parser files need regenerating." >&2
1280case "$osname" in
1281os390|posix-bc)
1282    rm -f y.tab.c y.tab.h
1283    # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
1284    yacc -d perly.y >/dev/null 2>&1
1285    if cmp -s y.tab.c perly.c; then
1286        rm -f y.tab.c
1287    else
1288        echo "perly.y -> perly.c" >&2
1289        mv -f y.tab.c perly.c
1290        chmod u+w perly.c
1291        sed -e '/^#include "perl\.h"/a\
1292\
1293#define yydebug    PL_yydebug\
1294#define yynerrs    PL_yynerrs\
1295#define yyerrflag  PL_yyerrflag\
1296#define yychar     PL_yychar\
1297#define yyval      PL_yyval\
1298#define yylval     PL_yylval'                           \
1299            -e '/YYSTYPE *yyval;/D'                     \
1300            -e '/YYSTYPE *yylval;/D'                    \
1301            -e '/int  yychar,/,/yynerrs;/D'             \
1302            -e 's/int yydebug = 0;/yydebug = 0;/'       \
1303            -e 's/[^_]realloc(/PerlMem_realloc(/g'      \
1304            -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1305            -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
1306        xxx="$xxx perly.c"
1307    fi
1308    case "$osname:$usethreads" in
1309    os390:define)
1310        sed -e 's@^extern int yychar, yyerrflag;@/* extern int yychar, yyerrflag; */@' perly.c > perly.tmp && mv perly.tmp perly.c
1311        ;;
1312    esac
1313    if cmp -s y.tab.h perly.h; then
1314        rm -f y.tab.h
1315    else
1316        echo "perly.y -> perly.h" >&2
1317        mv -f y.tab.h perly.h
1318        xxx="$xxx perly.h"
1319    fi
1320    if cd x2p
1321    then
1322        rm -f y.tab.c y.tab.h
1323        case "$osname" in
1324        posix-bc)
1325           # we are using two different yaccs in BS2000 Posix!
1326           byacc a2p.y >/dev/null 2>&1
1327           ;;
1328        *) # e.g. os390
1329           yacc  a2p.y >/dev/null 2>&1
1330           ;;
1331        esac
1332        if cmp -s y.tab.c a2p.c
1333        then
1334            rm -f y.tab.c
1335        else
1336            echo "a2p.y -> a2p.c" >&2
1337            mv -f y.tab.c a2p.c
1338            chmod u+w a2p.c
1339            sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
1340                -e 's|^static void __YY_YACC_MAIN.*BS2000.*|/*static main deleted*/|' \
1341                -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
1342            xxx="$xxx a2p.c"
1343        fi
1344        # In case somebody yacc -d:ed the a2p.y.
1345        if test -f y.tab.h
1346        then
1347            if cmp -s y.tab.h a2p.h
1348            then
1349                rm -f y.tab.h
1350            else
1351                echo "a2p.h -> a2p.h" >&2
1352                mv -f y.tab.h a2p.h
1353                xxx="$xxx a2p.h"
1354            fi
1355        fi
1356        cd ..
1357    fi
1358    ;;
1359vmesa)
1360    # Do nothing in VM/ESA.
1361    ;;
1362*)
1363    echo "'$osname' is an EBCDIC system I don't know that well." >&4
1364    ;;
1365esac
1366    case "$xxx" in
1367    '') echo "No parser files were regenerated.  That's okay." >&2 ;;
1368    esac
1369    ;;
1370esac
1371
Note: See TracBrowser for help on using the repository browser.