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