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