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