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