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