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