This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
40b1db186221c79e9bf78eba2209137a6f9162d4
[perl5.git] / Makefile.SH
1 #! /bin/sh
2 case $CONFIGDOTSH in
3 '')
4         if test -f config.sh; then TOP=.;
5         elif test -f ../config.sh; then TOP=..;
6         elif test -f ../../config.sh; then TOP=../..;
7         elif test -f ../../../config.sh; then TOP=../../..;
8         elif test -f ../../../../config.sh; then TOP=../../../..;
9         else
10                 echo "Can't find config.sh."; exit 1
11         fi
12         . $TOP/config.sh
13         ;;
14 esac
15 : This forces SH files to create target in same directory as SH file.
16 : This is so that make depend always knows where to find SH derivatives.
17 case "$0" in
18 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
19 esac
20
21 case "$d_dosuid" in
22 *define*) suidperl='suidperl' ;;
23 *) suidperl='';;
24 esac
25
26 linklibperl='$(LIBPERL)'
27 shrpldflags='$(LDDLFLAGS)'
28 ldlibpth=''
29 case "$useshrplib" in
30 true)
31         # Prefix all runs of 'miniperl' and 'perl' with 
32         # $ldlibpth so that ./perl finds *this* shared libperl.
33         case "$LD_LIBRARY_PATH" in
34         '')
35                 ldlibpth="LD_LIBRARY_PATH=`pwd`";;
36         *)
37                 ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";;
38         esac
39
40         pldlflags="$cccdlflags"
41         case "${osname}${osvers}" in
42         next4*)
43                 ld=libtool
44                 lddlflags="-dynamic -undefined warning -framework System \
45                 -compatibility_version 1 -current_version $patchlevel \
46                 -prebind -seg1addr 0x27000000 -install_name \$(shrpdir)/\$@"
47                 ;;
48         rhapsody*|darwin*)
49                 shrpldflags="${ldflags} -dynamiclib \
50                              -compatibility_version 1 \
51                              -current_version \
52                                 ${api_version}.${api_subversion} \
53                              -image_base 0x4be00000 \
54                              -install_name \$(shrpdir)/\$@"
55                 ;;
56         cygwin*)
57                 linklibperl="-lperl"
58                 ;;
59         sunos*)
60                 linklibperl="-lperl"
61                 ;;
62         netbsd*|freebsd[234]*|openbsd*)
63                 linklibperl="-L. -lperl"
64                 ;;
65         aix*)
66                 shrpldflags="-H512 -T512 -bhalt:4 -bM:SRE -bE:perl.exp"
67                 case "$osvers" in
68                 3*)     shrpldflags="$shrpldflags -e _nostart"
69                         ;;
70                 *)      shrpldflags="$shrpldflags -b noentry"
71                         ;;
72                 esac
73                 shrpldflags="$shrpldflags $ldflags $libs $cryptlib"
74                 linklibperl="-L $archlibexp/CORE -L `pwd | sed 's/\/UU$//'` -lperl"
75                 ;;
76         hpux*)
77                 linklibperl="-L `pwd | sed 's/\/UU$//'` -Wl,+s -Wl,+b$archlibexp/CORE -lperl"
78                 ;;
79         esac
80         case "$ldlibpthname" in
81         '') ;;
82         *)
83             case "$osname" in
84             os2)
85                 ldlibpth=''
86                 ;;
87             *)
88                 eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\""
89                 ;;
90             esac
91             # Strip off any trailing :'s
92             ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
93             ;;
94         esac
95         ;;
96 *)      pldlflags=''
97         ;;
98 esac
99
100 : Prepare dependency lists for Makefile.
101 dynamic_list=' '
102 for f in $dynamic_ext; do
103     : the dependency named here will never exist
104       base=`echo "$f" | sed 's/.*\///'`
105     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
106 done
107
108 static_list=' '
109 for f in $static_ext; do
110         base=`echo "$f" | sed 's/.*\///'`
111         static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
112 done
113
114 nonxs_list=' '
115 for f in $nonxs_ext; do
116     base=`echo "$f" | sed 's/.*\///'`
117     nonxs_list="$nonxs_list ext/$f/pm_to_blib"
118 done
119
120 echo "Extracting Makefile (with variable substitutions)"
121 $spitshell >Makefile <<!GROK!THIS!
122 # Makefile.SH
123 # This file is derived from Makefile.SH.  Any changes made here will
124 # be lost the next time you run Configure.
125 #  Makefile is used to generate $firstmakefile.  The only difference
126 #  is that $firstmakefile has the dependencies filled in at the end.
127 #
128 #
129 # I now supply perly.c with the kits, so don't remake perly.c without byacc
130 BYACC = $byacc
131 CC = $cc
132 LD = $ld
133
134 LDFLAGS = $ldflags
135 CLDFLAGS = $ldflags
136
137 SMALL = $small
138 LARGE = $large $split
139 mallocsrc = $mallocsrc
140 mallocobj = $mallocobj
141 LNS = $lns
142 RMS = rm -f
143 ranlib = $ranlib
144
145 # The following are mentioned only to make metaconfig include the
146 # appropriate questions in Configure.  If you want to change these,
147 # edit config.sh instead, or specify --man1dir=/wherever on
148 # installman commandline.
149 bin = $installbin
150 scriptdir = $scriptdir
151 shrpdir = $archlibexp/CORE
152 privlib = $installprivlib
153 man1dir = $man1dir
154 man1ext = $man1ext
155 man3dir = $man3dir
156 man3ext = $man3ext
157
158 # The following are used to build and install shared libraries for
159 # dynamic loading.
160 LDDLFLAGS = $lddlflags
161 SHRPLDFLAGS = $shrpldflags
162 CCDLFLAGS = $ccdlflags
163 DLSUFFIX = .$dlext
164 PLDLFLAGS = $pldlflags
165 LIBPERL = $libperl
166 LLIBPERL= $linklibperl
167 SHRPENV = $shrpenv
168
169 # The following is used to include the current directory in
170 # the dynamic loader path you are building a shared libperl.
171 LDLIBPTH = $ldlibpth
172
173 dynamic_ext = $dynamic_list
174 static_ext = $static_list
175 nonxs_ext = $nonxs_list
176 ext = \$(dynamic_ext) \$(static_ext) \$(nonxs_ext)
177 DYNALOADER = lib/auto/DynaLoader/DynaLoader\$(LIB_EXT)
178
179 libs = $libs $cryptlib
180
181 public = perl $suidperl utilities translators
182
183 shellflags = $shellflags
184
185 # This is set to  MAKE=$make if your $make command doesn't
186 # do it for you.
187 $make_set_make
188
189 # These variables may need to be manually set for non-Unix systems.
190 AR = $full_ar
191 EXE_EXT = $_exe
192 LIB_EXT = $_a
193 OBJ_EXT = $_o
194 PATH_SEP = $p_
195
196 FIRSTMAKEFILE = $firstmakefile
197
198 # Any special object files needed by this architecture, e.g. os2/os2.obj
199 ARCHOBJS = $archobjs
200
201 .SUFFIXES: .c \$(OBJ_EXT)
202
203 # grrr
204 SHELL = $sh
205
206 # how to tr(anslate) newlines
207 TRNL = '$trnl'
208
209 # not used by Makefile but by installperl;
210 # mentioned here so that metaconfig picks it up
211 INSTALL_USR_BIN_PERL = $installusrbinperl
212
213 !GROK!THIS!
214
215 ## In the following dollars and backticks do not need the extra backslash.
216 $spitshell >>Makefile <<'!NO!SUBS!'
217
218 CCCMD = `sh $(shellflags) cflags $(LIBPERL) $@`
219
220 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
221
222 # Files to be built with variable substitution before miniperl
223 # is available.
224 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
225         makedir.SH myconfig.SH writemain.SH pod/Makefile.SH
226
227 shextract = Makefile cflags config.h makeaperl makedepend \
228         makedir myconfig writemain pod/Makefile
229
230 # Files to be built with variable substitution after miniperl is
231 # available.  Dependencies handled manually below (for now).
232
233 pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL \
234         pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL \
235         pod/buildtoc.PL
236
237 # lib/lib.pm is not listed here because it has a rule of its own.
238 plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text \
239         pod/pod2usage pod/podchecker pod/podselect \
240         pod/buildtoc
241
242 addedbyconf = UU $(shextract) $(plextract) lib/lib.pm pstruct
243
244 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
245 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
246 h3 = opcode.h patchlevel.h perl.h perlapi.h perly.h pp.h proto.h regcomp.h
247 h4 = regexp.h scope.h sv.h unixish.h util.h iperlsys.h thread.h
248 h5 = utf8.h warnings.h
249 h = $(h1) $(h2) $(h3) $(h4) $(h5)
250
251 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
252 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c utf8.c
253 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c universal.c xsutils.c
254 c4 = globals.c perlio.c perlapi.c
255
256 c = $(c1) $(c2) $(c3) $(c4) miniperlmain.c perlmain.c
257
258 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)
259 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)
260 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)
261
262 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
263
264 # Once perl has been Configure'd and built ok you build different
265 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
266 #       make clean; make LIBPERL=libperl<type>.a
267 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
268 # See cflags to understand how this works.
269 #
270 # This mechanism is getting clunky and might not even work any more.
271 # EMBEDDING is on by default, and MULTIPLICITY doesn't work.
272 #
273
274 lintflags = -hbvxac
275
276 .c$(OBJ_EXT):
277         $(CCCMD) $(PLDLFLAGS) $*.c
278
279 all: $(FIRSTMAKEFILE) miniperl extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext)
280         @echo " ";
281         @echo " Everything is up to date. 'make test' to run test suite."
282
283 compile: all
284         echo "testing compilation" > testcompile;
285         cd utils;  $(MAKE) compile;
286         cd x2p; $(MAKE) compile; 
287         cd pod; $(MAKE) compile;
288
289 translators:    miniperl lib/Config.pm FORCE
290         @echo " "; echo "       Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all
291
292 utilities:      miniperl lib/Config.pm $(plextract) lib/lib.pm FORCE
293         @echo " "; echo "       Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all
294
295
296 # This is now done by installman only if you actually want the man pages.
297 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
298
299 # Phony target to force checking subdirectories.
300 # Apparently some makes require an action for the FORCE target.
301 FORCE:
302         @sh -c true
303
304 opmini$(OBJ_EXT): op.c
305         $(RMS) opmini.c
306         $(LNS) op.c opmini.c
307         $(CCCMD) $(PLDLFLAGS) -DPERL_EXTERNAL_GLOB opmini.c
308         $(RMS) opmini.c
309
310 miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h
311         $(CCCMD) $(PLDLFLAGS) $*.c
312
313 perlmain.c: miniperlmain.c config.sh $(FIRSTMAKEFILE)
314         sh writemain $(DYNALOADER) $(static_ext) > writemain.tmp
315         sh mv-if-diff writemain.tmp perlmain.c
316
317 perlmain$(OBJ_EXT): perlmain.c
318         $(CCCMD) $(PLDLFLAGS) $*.c
319
320 # The file ext.libs is a list of libraries that must be linked in
321 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
322 # static extension Makefile's add to it.
323 ext.libs: $(static_ext)
324         -@test -f ext.libs || touch ext.libs
325
326 !NO!SUBS!
327
328 # if test -f .patch ; then $spitshell >>Makefile <<'!NO!SUBS!' 
329 # patchlevel.h: .patch
330 #       perl fix_pl || (make -f Makefile.micro && ./microperl fix_pl)
331 #       $(SHELL) Makefile.SH
332 # fi
333
334 # !NO!SUBS!
335
336 # How to build libperl.  This is still rather convoluted.
337 # Load up custom Makefile.SH fragment for shared loading and executables:
338 case "$osname" in
339 *)
340         Makefile_s="$osname/Makefile.SHs"
341         ;;
342 esac
343
344 case "$osname" in
345 aix)
346         $spitshell >>Makefile <<!GROK!THIS!
347 LIBS                    = $libs
348 # In AIX we need to change this for building Perl itself from
349 # its earlier definition (which is for building external
350 # extensions *after* Perl has been built and installed)
351 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
352
353 !GROK!THIS!
354         case "$useshrplib" in
355         define|true|[yY]*)
356                 $spitshell >>Makefile <<'!NO!SUBS!'
357
358 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
359 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
360
361 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
362         $(RMS) $(LIBPERL_NONSHR)
363         $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
364
365 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
366         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
367             opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
368
369 MINIPERLEXP             = $(MINIPERL_NONSHR)
370
371 LIBPERLEXPORT           = perl.exp
372
373 !NO!SUBS!
374                 
375                 ;;
376         *)      
377                 $spitshell >>Makefile <<'!NO!SUBS!'
378 MINIPERLEXP             = miniperl$(EXE_EXT)
379
380 PERLEXPORT              = perl.exp
381
382 !NO!SUBS!
383         ;;
384         esac
385         $spitshell >>Makefile <<'!NO!SUBS!'
386 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
387         ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
388         sh mv-if-diff perl.exp.tmp perl.exp
389
390 !NO!SUBS!
391         ;;
392 os2)
393         $spitshell >>Makefile <<'!NO!SUBS!'
394 MINIPERLEXP             = miniperl
395
396 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
397         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
398         sh mv-if-diff perl.exp.tmp perl5.def
399
400 !NO!SUBS!
401         ;;
402 esac
403
404 if test -r $Makefile_s ; then
405         . $Makefile_s
406         $spitshell >>Makefile <<!GROK!THIS!
407
408 Makefile: $Makefile_s
409 !GROK!THIS!
410 else
411         $spitshell >>Makefile <<'!NO!SUBS!'
412 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
413 !NO!SUBS!
414         case "$useshrplib" in
415         true)
416                 $spitshell >>Makefile <<'!NO!SUBS!'
417         $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
418 !NO!SUBS!
419                 case "$osname" in
420                 aix)
421                         $spitshell >>Makefile <<'!NO!SUBS!'
422         rm -f libperl$(OBJ_EXT)
423         mv $@ libperl$(OBJ_EXT)
424         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
425 !NO!SUBS!
426                         ;;
427                 esac
428                 ;;
429         *)
430                 $spitshell >>Makefile <<'!NO!SUBS!'
431         rm -f $(LIBPERL)
432         $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
433         @$(ranlib) $(LIBPERL)
434 !NO!SUBS!
435                 ;;
436         esac
437         $spitshell >>Makefile <<'!NO!SUBS!'
438
439 # How to build executables.
440
441 # The $& notation tells Sequent machines that it can do a parallel make,
442 # and is harmless otherwise.
443 # The miniperl -w -MExporter line is a basic cheap test to catch errors
444 # before make goes on to run preplibrary and then MakeMaker on extensions.
445 # This is very handy because later errors are often caused by miniperl
446 # build problems but that's not obvious to the novice.
447 # The Module used here must not depend on Config or any extensions.
448
449 !NO!SUBS!
450
451         case "${osname}${osvers}" in
452         next4*)
453                 $spitshell >>Makefile <<'!NO!SUBS!'
454 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
455         $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
456             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
457         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
458 !NO!SUBS!
459                 ;;
460         aix*)
461                 $spitshell >>Makefile <<'!NO!SUBS!'
462 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
463         $(CC) -o miniperl $(CLDFLAGS) \
464             `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
465             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
466         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
467 !NO!SUBS!
468                 ;;
469         *)
470                 $spitshell >>Makefile <<'!NO!SUBS!'
471 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
472         $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl \
473             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
474         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
475 !NO!SUBS!
476                 ;;
477         esac
478
479         $spitshell >>Makefile <<'!NO!SUBS!'
480
481 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
482         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
483
484 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
485         $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
486
487 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
488         $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
489
490 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
491         $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
492
493 # This version, if specified in Configure, does ONLY those scripts which need
494 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
495 # checks as well as the special code to validate that the script in question
496 # has been invoked correctly.
497
498 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
499         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
500
501 !NO!SUBS!
502
503 fi
504
505 $spitshell >>Makefile <<'!NO!SUBS!'
506
507 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
508         $(RMS) sperl.c
509         $(LNS) perl.c sperl.c
510         $(CCCMD) -DIAMSUID sperl.c
511         $(RMS) sperl.c
512
513 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
514 #       test -d lib/auto || mkdir lib/auto
515 #
516 preplibrary: miniperl lib/Config.pm
517         @sh ./makedir lib/auto
518         @echo " AutoSplitting perl library"
519         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
520                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
521
522 # Take care to avoid modifying lib/Config.pm without reason
523 # (If trying to create a new port and having problems with the configpm script, 
524 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
525 lib/Config.pm: config.sh miniperl configpm lib/re.pm
526         $(LDLIBPTH) ./miniperl configpm configpm.tmp
527         sh mv-if-diff configpm.tmp $@
528
529 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
530         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
531         sh mv-if-diff minimod.tmp $@
532
533 lib/re.pm: ext/re/re.pm
534         rm -f $@
535         cat ext/re/re.pm > $@
536
537 $(plextract):   miniperl lib/Config.pm
538         $(LDLIBPTH) ./miniperl -Ilib $@.PL
539
540 lib/lib.pm:     miniperl lib/Config.pm
541         $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
542
543 extra.pods: miniperl
544         -@test -f extra.pods && rm -f `cat extra.pods`
545         -@rm -f extra.pods
546         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
547             nx=`echo $$x | sed -e "s/README\.//"`; \
548             cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
549             echo "pod/perl"$$nx".pod" >> extra.pods ; \
550         done
551         -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
552
553 install-strip:
554         $(MAKE) STRIPFLAGS=-s install
555
556 install:
557         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS)
558
559 install-verbose:
560         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V
561
562 install-silent:
563         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S
564
565 no-install:
566         $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n
567
568 install.perl:   all installperl
569         if [ -n "$(COMPILE)" ]; \
570         then \
571                 cd utils; $(MAKE) compile; \
572                 cd ../x2p; $(MAKE) compile; \
573                 cd ../pod; $(MAKE) compile; \
574         else :; \
575         fi
576         $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS)
577
578 install.man:    all installman
579         $(LDLIBPTH) ./perl installman $(INSTALLFLAGS)
580
581 # XXX Experimental. Hardwired values, but useful for testing.
582 # Eventually Configure could ask for some of these values.
583 install.html: all installhtml
584         -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
585         $(LDLIBPTH) ./perl installhtml                   \
586       --podroot=. --podpath=. --recurse  \
587       --htmldir=$(privlib)/html     \
588       --htmlroot=$(privlib)/html    \
589       --splithead=pod/perlipc     \
590       --splititem=pod/perlfunc    \
591       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
592       --verbose
593
594
595 # I now supply perly.c with the kits, so the following section is
596 # used only if you force byacc to run by saying
597 #       make run_byacc
598 # Since we patch up the byacc output, the perly.fixer script needs
599 # to run with precisely the same version of byacc as I use.  You
600 # normally shouldn't remake perly.[ch].
601
602 run_byacc:      FORCE
603         $(BYACC) -d perly.y
604         -chmod 664 perly.c
605         sh $(shellflags) ./perly.fixer y.tab.c perly.c
606         sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
607             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
608         sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
609         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
610         chmod 664 vms/perly_c.vms vms/perly_h.vms
611         perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
612
613 # We don't want to regenerate perly.c and perly.h, but they might
614 # appear out-of-date after a patch is applied or a new distribution is
615 # made.
616 perly.c: perly.y
617         -@sh -c true
618
619 perly.h: perly.y
620         -@sh -c true
621
622 # No compat3.sym here since and including the 5.004_50.
623 # No interp.sym since 5.005_03.
624 SYM  = global.sym globvar.sym perlio.sym pp.sym
625
626 SYMH = perlvars.h intrpvar.h thrdvar.h
627
628 CHMOD_W = chmod +w
629
630 # The following files are generated automatically
631 #       keywords.pl:    keywords.h
632 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
633 # [* embed.pl needs pp.sym generated by opcode.pl! *]
634 #       embed.pl:       proto.h embed.h embedvar.h global.sym objXSUB.h
635 #                       perlapi.h perlapi.c pod/perlintern.pod
636 #                       pod/perlapi.pod
637 #       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
638 #                       ext/B/B/Asmdata.pm
639 #       regcomp.pl:     regnodes.h
640 #       warnings.pl:    warnings.h lib/warnings.pm
641 # The correct versions should be already supplied with the perl kit,
642 # in case you don't have perl available.
643 # To force them to be regenerated, type
644 #       make regen_headers
645
646 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
647                 embed.h embedvar.h global.sym \
648                 pod/perlintern.pod pod/perlapi.pod \
649                 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
650                 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
651                 warnings.h lib/warnings.pm
652
653 regen_headers:  FORCE
654         -$(CHMOD_W) $(AUTOGEN_FILES)
655         -perl keywords.pl
656         -perl opcode.pl
657         -perl embed.pl
658         -perl bytecode.pl
659         -perl regcomp.pl
660         -perl warnings.pl
661
662 regen_pods:     FORCE
663         -cd pod; $(LDLIBPTH) make regen_pods
664
665 # Extensions:
666 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
667 # automatically get built.  There should ordinarily be no need to change
668 # any of this part of makefile.
669 #
670 # The dummy dependency is a place holder in case $(dynamic_ext) or
671 # $(static_ext) is empty.
672 #
673 # DynaLoader may be needed for extensions that use Makefile.PL.
674
675 $(DYNALOADER):  miniperl preplibrary FORCE
676         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
677
678 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
679         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
680
681 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
682         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
683
684 n_dummy $(nonxs_ext):   miniperl preplibrary $(DYNALOADER) FORCE
685         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
686
687 clean:          _tidy _mopup
688
689 realclean:      _realcleaner _mopup
690         @echo "Note that make realclean does not delete config.sh or Policy.sh"
691
692 _clobber:
693         rm -f config.sh cppstdin Policy.sh
694
695 clobber:        _realcleaner _mopup _clobber
696
697 distclean:      clobber
698
699 # Like distclean but also removes emacs backups and *.orig.
700 veryclean:      _verycleaner _mopup _clobber
701         -@rm -f Obsolete Wanted
702
703 # Do not 'make _mopup' directly.
704 _mopup:
705         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
706         -@test -f extra.pods && rm -f `cat extra.pods`
707         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
708         -rm -f perl.exp ext.libs extra.pods opmini.o
709         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
710         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
711         rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
712
713 # Do not 'make _tidy' directly.
714 _tidy:
715         -cd pod; $(LDLIBPTH) $(MAKE) clean
716         -cd utils; $(LDLIBPTH) $(MAKE) clean
717         -cd x2p; $(LDLIBPTH) $(MAKE) clean
718         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
719         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
720         done
721         rm -f testcompile compilelog
722
723 _cleaner1:
724         -cd os2; rm -f Makefile
725         -cd pod; $(LDLIBPTH) $(MAKE) $(CLEAN)
726         -cd utils; $(LDLIBPTH) $(MAKE) $(CLEAN)
727         -cd x2p; $(LDLIBPTH) $(MAKE) $(CLEAN)
728         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
729         $(LDLIBPTH) sh ext/util/make_ext $(CLEAN) $$x MAKE=$(MAKE) ; \
730         done
731
732 _cleaner2:
733         rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl t/ran_tests .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
734         rm -rf $(addedbyconf)
735         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
736         rm -f $(private)
737         rm -rf lib/auto
738         rm -f lib/.exists lib/*/.exists
739         rm -f h2ph.man pstruct
740         rm -rf .config
741         rm -f testcompile compilelog
742         -rmdir lib/B lib/Data lib/IO/Socket lib/IO lib/Sys lib/Thread
743
744 _realcleaner: 
745         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=realclean
746         @$(LDLIBPTH) $(MAKE) _cleaner2
747
748 _verycleaner: 
749         @$(LDLIBPTH) $(MAKE) _cleaner1 CLEAN=veryclean
750         @$(LDLIBPTH) $(MAKE) _cleaner2
751         -rm -f *~ *.orig */*~ */*.orig */*/*~ */*/*.orig
752
753 # The following lint has practically everything turned on.  Unfortunately,
754 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
755 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
756 # for that spot.
757
758 lint: perly.c $(c)
759         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
760
761 # Need to unset during recursion to go out of loop.
762 # The README below ensures that the dependency list is never empty and
763 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
764
765 MAKEDEPEND = Makefile makedepend
766
767 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
768         $(MAKE) depend MAKEDEPEND=
769
770 config.h: config_h.SH config.sh
771         $(SHELL) config_h.SH
772
773 # When done, touch perlmain.c so that it doesn't get remade each time.
774 depend: makedepend
775         sh ./makedepend MAKE=$(MAKE)
776         - test -s perlmain.c && touch perlmain.c
777         cd x2p; $(MAKE) depend
778
779 # Cannot postpone this until $firstmakefile is ready ;-)
780 makedepend: makedepend.SH config.sh
781         sh ./makedepend.SH
782
783 # Cannot delegate rebuilding of t/perl to make to allow interlaced
784 # test and minitest
785 test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
786         cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
787
788 # Second branch is for testing without a tty or controling terminal.
789 # See t/op/stat.t
790 test check: test-prep
791         if (true </dev/tty) >/dev/null 2>&1; then \
792           cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
793         else \
794           cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
795         fi
796         @echo "Ran tests" > t/ran_tests
797
798 utest ucheck: test-prep
799         if (true </dev/tty) >/dev/null 2>&1; then \
800           cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
801         else \
802           cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
803         fi
804
805 # For testing without a tty or controling terminal. See t/op/stat.t
806 test-notty: test-prep
807         cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
808
809 # Can't depend on lib/Config.pm because that might be where miniperl
810 # is crashing.
811 minitest: miniperl lib/re.pm
812         @echo "You may see some irrelevant test failures if you have been unable"
813         @echo "to build lib/Config.pm."
814         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
815                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
816
817 # Handy way to run perlbug -ok without having to install and run the
818 # installed perlbug. We don't re-run the tests here - we trust the user.
819 # Please *don't* use this unless all tests pass.
820 # If you want to report test failures, use "make nok" instead.
821 ok:     utilities
822         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
823
824 okfile: utilities
825         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
826
827 nok:    utilities
828         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
829
830 nokfile:        utilities
831         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
832
833 clist:  $(c)
834         echo $(c) | tr ' ' $(TRNL) >.clist
835
836 hlist:  $(h)
837         echo $(h) | tr ' ' $(TRNL) >.hlist
838
839 shlist: $(sh)
840         echo $(sh) | tr ' ' $(TRNL) >.shlist
841
842 pllist: $(pl)
843         echo $(pl) | tr ' ' $(TRNL) >.pllist
844
845 Makefile: Makefile.SH ./config.sh
846         $(SHELL) Makefile.SH
847
848 distcheck: FORCE
849         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
850
851 elc:    emacs/cperl-mode.elc
852
853 emacs/cperl-mode.elc: emacs/cperl-mode.el
854         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
855
856 etags:  TAGS
857
858 TAGS: emacs/cperl-mode.elc
859         sh emacs/ptags
860
861 ctags:  tags
862
863 # Let's hope make will not go into an infinite loop on case-unsensitive systems
864 # This may also fail if . is in the head of the path, since perl will
865 # require -Ilib
866 tags:   TAGS
867         perl emacs/e2ctags.pl TAGS > tags
868
869 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
870 # If this runs make out of memory, delete /usr/include lines.
871 !NO!SUBS!
872
873 $eunicefix Makefile
874 case `pwd` in
875 *SH)
876     $rm -f ../Makefile
877     $ln Makefile ../Makefile
878     ;;
879 esac
880 $rm -f $firstmakefile
881
882 # Now do any special processing required before building.
883
884 case "$ebcdic" in
885 $define)
886     xxx=''
887     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
888 case "$osname" in
889 os390|posix-bc)
890     rm -f y.tab.c y.tab.h
891     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
892     yacc -d perly.y >/dev/null 2>&1
893     if cmp -s y.tab.c perly.c; then
894         rm -f y.tab.c
895     else
896         echo "perly.y -> perly.c" >&2
897         mv -f y.tab.c perly.c
898         chmod u+w perly.c
899         sed -e '/^#include "perl\.h"/a\
900 \
901 #define yydebug    PL_yydebug\
902 #define yynerrs    PL_yynerrs\
903 #define yyerrflag  PL_yyerrflag\
904 #define yychar     PL_yychar\
905 #define yyval      PL_yyval\
906 #define yylval     PL_yylval'                           \
907             -e '/YYSTYPE *yyval;/D'                     \
908             -e '/YYSTYPE *yylval;/D'                    \
909             -e '/int  yychar,/,/yynerrs;/D'             \
910             -e 's/int yydebug = 0;/yydebug = 0;/'       \
911             -e 's/[^_]realloc(/PerlMem_realloc(/g'      \
912             -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
913             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
914         xxx="$xxx perly.c"
915     fi
916     if cmp -s y.tab.h perly.h; then
917         rm -f y.tab.h
918     else
919         echo "perly.y -> perly.h" >&2
920         mv -f y.tab.h perly.h
921         xxx="$xxx perly.h"
922     fi
923     if cd x2p
924     then
925         rm -f y.tab.c y.tab.h
926         case "$osname" in
927         posix-bc)
928            # we are using two different yaccs in BS2000 Posix!
929            byacc a2p.y >/dev/null 2>&1
930            ;;
931         *) # e.g. os390
932            yacc  a2p.y >/dev/null 2>&1
933            ;;
934         esac
935         if cmp -s y.tab.c a2p.c
936         then
937             rm -f y.tab.c
938         else
939             echo "a2p.y -> a2p.c" >&2
940             mv -f y.tab.c a2p.c
941             chmod u+w a2p.c
942             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
943                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
944             xxx="$xxx a2p.c"
945         fi
946         # In case somebody yacc -d:ed the a2p.y.
947         if test -f y.tab.h
948         then
949             if cmp -s y.tab.h a2p.h
950             then
951                 rm -f y.tab.h
952             else
953                 echo "a2p.h -> a2p.h" >&2
954                 mv -f y.tab.h a2p.h
955                 xxx="$xxx a2p.h"
956             fi
957         fi
958         cd ..
959     fi
960     ;;
961 vmesa)
962     # Do nothing in VM/ESA.
963     ;;
964 *)
965     echo "'$osname' is an EBCDIC system I don't know that well." >&4
966     ;;
967 esac
968     case "$xxx" in
969     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
970     esac
971     ;;
972 esac
973