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