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