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