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