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