caa647b7dcaf22882bf84a503b2b6d3661363b98
[p5sagit/p5-mst-13.2.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
333 !NO!SUBS!
334
335 fi
336
337 # How to build libperl.  This is still rather convoluted.
338 # Load up custom Makefile.SH fragment for shared loading and executables:
339 case "$osname" in
340 *)
341         Makefile_s="$osname/Makefile.SHs"
342         ;;
343 esac
344
345 case "$osname" in
346 aix)
347         $spitshell >>Makefile <<!GROK!THIS!
348 LIBS                    = $libs
349 # In AIX we need to change this for building Perl itself from
350 # its earlier definition (which is for building external
351 # extensions *after* Perl has been built and installed)
352 CCDLFLAGS               = `echo $ccdlflags|sed -e 's@-bE:.*/perl\.exp@-bE:perl.exp@'`
353
354 !GROK!THIS!
355         case "$useshrplib" in
356         define|true|[yY]*)
357                 $spitshell >>Makefile <<'!NO!SUBS!'
358
359 LIBPERL_NONSHR          = libperl_nonshr$(LIB_EXT)
360 MINIPERL_NONSHR         = miniperl_nonshr$(EXE_EXT)
361
362 $(LIBPERL_NONSHR): perl$(OBJ_EXT) $(obj)
363         $(RMS) $(LIBPERL_NONSHR)
364         $(AR) rcu $(LIBPERL_NONSHR) perl$(OBJ_EXT) $(obj)
365
366 $(MINIPERL_NONSHR): $(LIBPERL_NONSHR) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
367         $(CC) $(LDFLAGS) -o $(MINIPERL_NONSHR) miniperlmain$(OBJ_EXT) \
368             opmini$(OBJ_EXT) $(LIBPERL_NONSHR) $(LIBS)
369
370 MINIPERLEXP             = $(MINIPERL_NONSHR)
371
372 LIBPERLEXPORT           = perl.exp
373
374 !NO!SUBS!
375                 
376                 ;;
377         *)      
378                 $spitshell >>Makefile <<'!NO!SUBS!'
379 MINIPERLEXP             = miniperl$(EXE_EXT)
380
381 PERLEXPORT              = perl.exp
382
383 !NO!SUBS!
384         ;;
385         esac
386         $spitshell >>Makefile <<'!NO!SUBS!'
387 perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH)
388         ./$(MINIPERLEXP) makedef.pl PLATFORM=aix | sort -u | sort -f > perl.exp.tmp
389         sh mv-if-diff perl.exp.tmp perl.exp
390
391 !NO!SUBS!
392         ;;
393 os2)
394         $spitshell >>Makefile <<'!NO!SUBS!'
395 MINIPERLEXP             = miniperl
396
397 perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map
398         ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) > perl.exp.tmp
399         sh mv-if-diff perl.exp.tmp perl5.def
400
401 !NO!SUBS!
402         ;;
403 esac
404
405 if test -r $Makefile_s ; then
406         . $Makefile_s
407         $spitshell >>Makefile <<!GROK!THIS!
408
409 Makefile: $Makefile_s
410 !GROK!THIS!
411 else
412         $spitshell >>Makefile <<'!NO!SUBS!'
413 $(LIBPERL): $& perl$(OBJ_EXT) $(obj) $(LIBPERLEXPORT)
414 !NO!SUBS!
415         case "$useshrplib" in
416         true)
417                 $spitshell >>Makefile <<'!NO!SUBS!'
418         $(LD) $(SHRPLDFLAGS) -o $@ perl$(OBJ_EXT) $(obj)
419 !NO!SUBS!
420                 case "$osname" in
421                 aix)
422                         $spitshell >>Makefile <<'!NO!SUBS!'
423         rm -f libperl$(OBJ_EXT)
424         mv $@ libperl$(OBJ_EXT)
425         $(AR) qv $(LIBPERL) libperl$(OBJ_EXT)
426 !NO!SUBS!
427                         ;;
428                 esac
429                 ;;
430         *)
431                 $spitshell >>Makefile <<'!NO!SUBS!'
432         rm -f $(LIBPERL)
433         $(AR) rcu $(LIBPERL) perl$(OBJ_EXT) $(obj)
434         @$(ranlib) $(LIBPERL)
435 !NO!SUBS!
436                 ;;
437         esac
438         $spitshell >>Makefile <<'!NO!SUBS!'
439
440 # How to build executables.
441
442 # The $& notation tells Sequent machines that it can do a parallel make,
443 # and is harmless otherwise.
444 # The miniperl -w -MExporter line is a basic cheap test to catch errors
445 # before make goes on to run preplibrary and then MakeMaker on extensions.
446 # This is very handy because later errors are often caused by miniperl
447 # build problems but that's not obvious to the novice.
448 # The Module used here must not depend on Config or any extensions.
449
450 !NO!SUBS!
451
452         case "${osname}${osvers}" in
453         next4*)
454                 $spitshell >>Makefile <<'!NO!SUBS!'
455 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
456         $(CC) -o miniperl `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
457             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
458         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
459 !NO!SUBS!
460                 ;;
461         aix*)
462                 $spitshell >>Makefile <<'!NO!SUBS!'
463 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
464         $(CC) -o miniperl $(CLDFLAGS) \
465             `echo $(obj) | sed 's/ op$(OBJ_EXT) / /'` \
466             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perl$(OBJ_EXT) $(libs)
467         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
468 !NO!SUBS!
469                 ;;
470         *)
471                 $spitshell >>Makefile <<'!NO!SUBS!'
472 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL) opmini$(OBJ_EXT)
473         $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) -o miniperl \
474             miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
475         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
476 !NO!SUBS!
477                 ;;
478         esac
479
480         $spitshell >>Makefile <<'!NO!SUBS!'
481
482 perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
483         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
484
485 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
486         $(SHRPENV) $(LDLIBPTH) purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
487
488 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
489         $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
490
491 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
492         $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
493
494 # This version, if specified in Configure, does ONLY those scripts which need
495 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
496 # checks as well as the special code to validate that the script in question
497 # has been invoked correctly.
498
499 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs $(PERLEXPORT)
500         $(SHRPENV) $(LDLIBPTH) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
501
502 !NO!SUBS!
503
504 fi
505
506 $spitshell >>Makefile <<'!NO!SUBS!'
507
508 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
509         $(RMS) sperl.c
510         $(LNS) perl.c sperl.c
511         $(CCCMD) -DIAMSUID sperl.c
512         $(RMS) sperl.c
513
514 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
515 #       test -d lib/auto || mkdir lib/auto
516 #
517 preplibrary: miniperl lib/Config.pm
518         @sh ./makedir lib/auto
519         @echo " AutoSplitting perl library"
520         $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \
521                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
522
523 # Take care to avoid modifying lib/Config.pm without reason
524 # (If trying to create a new port and having problems with the configpm script, 
525 # try 'make minitest' and/or commenting out the tests at the end of configpm.)
526 lib/Config.pm: config.sh miniperl configpm lib/re.pm
527         $(LDLIBPTH) ./miniperl configpm configpm.tmp
528         sh mv-if-diff configpm.tmp $@
529
530 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
531         $(LDLIBPTH) ./miniperl minimod.pl > minimod.tmp
532         sh mv-if-diff minimod.tmp $@
533
534 lib/re.pm: ext/re/re.pm
535         rm -f $@
536         cat ext/re/re.pm > $@
537
538 $(plextract):   miniperl lib/Config.pm
539         $(LDLIBPTH) ./miniperl -Ilib $@.PL
540
541 lib/lib.pm:     miniperl lib/Config.pm
542         $(LDLIBPTH) ./miniperl -Ilib lib/lib_pm.PL
543
544 extra.pods: miniperl
545         -@test -f extra.pods && rm -f `cat extra.pods`
546         -@rm -f extra.pods
547         -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
548             nx=`echo $$x | sed -e "s/README\.//"`; \
549             $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
550             echo "pod/perl"$$nx".pod" >> extra.pods ; \
551         done
552         -@test -f vms/perlvms.pod && $(LNS) ../vms/perlvms.pod pod/perlvms.pod && echo "pod/perlvms.pod" >> extra.pods
553
554 install-strip:
555         $(MAKE) STRIPFLAGS=-s install
556
557 install: all install.perl install.man
558
559 install.perl:   all installperl
560         if [ -n "$(COMPILE)" ]; \
561         then \
562                 cd utils; $(MAKE) compile; \
563                 cd ../x2p; $(MAKE) compile; \
564                 cd ../pod; $(MAKE) compile; \
565         else :; \
566         fi
567         $(LDLIBPTH) ./perl installperl $(STRIPFLAGS)
568
569 install.man:    all installman
570         $(LDLIBPTH) ./perl installman
571
572 # XXX Experimental. Hardwired values, but useful for testing.
573 # Eventually Configure could ask for some of these values.
574 install.html: all installhtml
575         -@test -f README.vms && $(LNS) ../README.vms vms/README_vms.pod
576         $(LDLIBPTH) ./perl installhtml                   \
577       --podroot=. --podpath=. --recurse  \
578       --htmldir=$(privlib)/html     \
579       --htmlroot=$(privlib)/html    \
580       --splithead=pod/perlipc     \
581       --splititem=pod/perlfunc    \
582       --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \
583       --verbose
584
585
586 # I now supply perly.c with the kits, so the following section is
587 # used only if you force byacc to run by saying
588 #       make run_byacc
589 # Since we patch up the byacc output, the perly.fixer script needs
590 # to run with precisely the same version of byacc as I use.  You
591 # normally shouldn't remake perly.[ch].
592
593 run_byacc:      FORCE
594         $(BYACC) -d perly.y
595         -chmod 664 perly.c
596         sh $(shellflags) ./perly.fixer y.tab.c perly.c
597         sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
598             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
599         sed -e '/^extern YYSTYPE yy/D' y.tab.h >yh.tmp && mv yh.tmp y.tab.h
600         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
601         chmod 664 vms/perly_c.vms vms/perly_h.vms
602         perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
603
604 # We don't want to regenerate perly.c and perly.h, but they might
605 # appear out-of-date after a patch is applied or a new distribution is
606 # made.
607 perly.c: perly.y
608         -@sh -c true
609
610 perly.h: perly.y
611         -@sh -c true
612
613 # No compat3.sym here since and including the 5.004_50.
614 # No interp.sym since 5.005_03.
615 SYM  = global.sym globvar.sym perlio.sym pp.sym
616
617 SYMH = perlvars.h intrpvar.h thrdvar.h
618
619 CHMOD_W = chmod +w
620
621 # The following files are generated automatically
622 #       keywords.pl:    keywords.h
623 #       opcode.pl:      opcode.h opnames.h pp_proto.h pp.sym
624 # [* embed.pl needs pp.sym generated by opcode.pl! *]
625 #       embed.pl:       proto.h embed.h embedvar.h global.sym objXSUB.h
626 #                       perlapi.h perlapi.c pod/perlintern.pod
627 #                       pod/perlapi.pod
628 #       bytecode.pl:    ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c
629 #                       ext/B/B/Asmdata.pm
630 #       regcomp.pl:     regnodes.h
631 #       warnings.pl:    warnings.h lib/warnings.pm
632 # The correct versions should be already supplied with the perl kit,
633 # in case you don't have perl available.
634 # To force them to be regenerated, type
635 #       make regen_headers
636
637 AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \
638                 embed.h embedvar.h global.sym \
639                 pod/perlintern.pod pod/perlapi.pod \
640                 objXSUB.h perlapi.h perlapi.c ext/ByteLoader/byterun.h \
641                 ext/ByteLoader/byterun.c ext/B/B/Asmdata.pm regnodes.h \
642                 warnings.h lib/warnings.pm
643
644 regen_headers:  FORCE
645         -$(CHMOD_W) $(AUTOGEN_FILES)
646         -perl keywords.pl
647         -perl opcode.pl
648         -perl embed.pl
649         -perl bytecode.pl
650         -perl regcomp.pl
651         -perl warnings.pl
652
653 regen_pods:     FORCE
654         -cd pod; $(LDLIBPTH) make regen_pods
655
656 # Extensions:
657 # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will
658 # automatically get built.  There should ordinarily be no need to change
659 # any of this part of makefile.
660 #
661 # The dummy dependency is a place holder in case $(dynamic_ext) or
662 # $(static_ext) is empty.
663 #
664 # DynaLoader may be needed for extensions that use Makefile.PL.
665
666 $(DYNALOADER):  miniperl preplibrary FORCE
667         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
668
669 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
670         @$(LDLIBPTH) sh ext/util/make_ext dynamic $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
671
672 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
673         @$(LDLIBPTH) sh ext/util/make_ext static $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
674
675 n_dummy $(nonxs_ext):   miniperl preplibrary $(DYNALOADER) FORCE
676         @$(LDLIBPTH) sh ext/util/make_ext nonxs $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL)
677
678 clean:          _tidy _mopup
679
680 realclean:      _cleaner _mopup
681         @echo "Note that make realclean does not delete config.sh or Policy.sh"
682
683 clobber:        _cleaner _mopup
684         rm -f config.sh cppstdin Policy.sh
685
686 distclean:      clobber
687
688 # Do not 'make _mopup' directly.
689 _mopup:
690         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
691         -@test -f extra.pods && rm -f `cat extra.pods`
692         -@test -f vms/README_vms.pod && rm -f vms/README_vms.pod
693         -rm -f perl.exp ext.libs extra.pods
694         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
695         -rm -f perl.loadmap miniperl.loadmap perl.prelmap miniperl.prelmap
696         rm -f perl suidperl miniperl $(LIBPERL) libperl.* microperl
697
698 # Do not 'make _tidy' directly.
699 _tidy:
700         -cd pod; $(LDLIBPTH) $(MAKE) clean
701         -cd utils; $(LDLIBPTH) $(MAKE) clean
702         -cd x2p; $(LDLIBPTH) $(MAKE) clean
703         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
704         $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \
705         done
706         rm -f testcompile compilelog
707
708 # Do not 'make _cleaner' directly.
709 _cleaner:
710         -cd os2; rm -f Makefile
711         -cd pod; $(LDLIBPTH) $(MAKE) realclean
712         -cd utils; $(LDLIBPTH) $(MAKE) realclean
713         -cd x2p; $(LDLIBPTH) $(MAKE) realclean
714         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \
715         $(LDLIBPTH) sh ext/util/make_ext realclean $$x MAKE=$(MAKE) ; \
716         done
717         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 .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR)
718         rm -rf $(addedbyconf)
719         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
720         rm -f $(private)
721         rm -rf lib/auto
722         rm -f lib/.exists lib/*/.exists
723         rm -f h2ph.man pstruct
724         rm -rf .config
725         rm -f testcompile compilelog
726         -rmdir lib/B lib/Data lib/IO/Socket lib/IO
727
728 # The following lint has practically everything turned on.  Unfortunately,
729 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
730 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
731 # for that spot.
732
733 lint: perly.c $(c)
734         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
735
736 # Need to unset during recursion to go out of loop.
737 # The README below ensures that the dependency list is never empty and
738 # that when MAKEDEPEND is empty $(FIRSTMAKEFILE) doesn't need rebuilding.
739
740 MAKEDEPEND = Makefile makedepend
741
742 $(FIRSTMAKEFILE):       README $(MAKEDEPEND)
743         $(MAKE) depend MAKEDEPEND=
744
745 config.h: config_h.SH config.sh
746         $(SHELL) config_h.SH
747
748 # When done, touch perlmain.c so that it doesn't get remade each time.
749 depend: makedepend
750         sh ./makedepend MAKE=$(MAKE)
751         - test -s perlmain.c && touch perlmain.c
752         cd x2p; $(MAKE) depend
753
754 # Cannot postpone this until $firstmakefile is ready ;-)
755 makedepend: makedepend.SH config.sh
756         sh ./makedepend.SH
757
758 # Cannot delegate rebuilding of t/perl to make to allow interlaced
759 # test and minitest
760 test-prep: miniperl perl preplibrary utilities $(dynamic_ext) $(nonxs_ext) $(TEST_PERL_DLL)
761         cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT))
762
763 # Second branch is for testing without a tty or controling terminal.
764 # See t/op/stat.t
765 test check: test-prep
766         if (true </dev/tty) >/dev/null 2>&1; then \
767           cd t && $(LDLIBPTH) ./perl TEST </dev/tty; \
768         else \
769           cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \
770         fi
771
772 utest ucheck: test-prep
773         if (true </dev/tty) >/dev/null 2>&1; then \
774           cd t && $(LDLIBPTH) ./perl UTEST </dev/tty; \
775         else \
776           cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl UTEST; \
777         fi
778
779 # For testing without a tty or controling terminal. See t/op/stat.t
780 test-notty: test-prep
781         cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST
782
783 # Can't depend on lib/Config.pm because that might be where miniperl
784 # is crashing.
785 minitest: miniperl lib/re.pm
786         @echo "You may see some irrelevant test failures if you have been unable"
787         @echo "to build lib/Config.pm."
788         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
789                 && $(LDLIBPTH) ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
790
791 # Handy way to run perlbug -ok without having to install and run the
792 # installed perlbug. We don't re-run the tests here - we trust the user.
793 # Please *don't* use this unless all tests pass.
794 # If you want to report test failures, use "make nok" instead.
795 ok:     utilities
796         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)'
797
798 okfile: utilities
799         $(LDLIBPTH) ./perl -Ilib utils/perlbug -ok -s '(UNINSTALLED)' -F perl.ok
800
801 nok:    utilities
802         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)'
803
804 nokfile:        utilities
805         $(LDLIBPTH) ./perl -Ilib utils/perlbug -nok -s '(UNINSTALLED)' -F perl.nok
806
807 clist:  $(c)
808         echo $(c) | tr ' ' $(TRNL) >.clist
809
810 hlist:  $(h)
811         echo $(h) | tr ' ' $(TRNL) >.hlist
812
813 shlist: $(sh)
814         echo $(sh) | tr ' ' $(TRNL) >.shlist
815
816 pllist: $(pl)
817         echo $(pl) | tr ' ' $(TRNL) >.pllist
818
819 Makefile: Makefile.SH ./config.sh
820         $(SHELL) Makefile.SH
821
822 distcheck: FORCE
823         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
824
825 elc:    emacs/cperl-mode.elc
826
827 emacs/cperl-mode.elc: emacs/cperl-mode.el
828         -cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el
829
830 etags:  TAGS
831
832 TAGS: emacs/cperl-mode.elc
833         sh emacs/ptags
834
835 ctags:  tags
836
837 # Let's hope make will not go into an infinite loop on case-unsensitive systems
838 # This may also fail if . is in the head of the path, since perl will
839 # require -Ilib
840 tags:   TAGS
841         perl emacs/e2ctags.pl TAGS > tags
842
843 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
844 # If this runs make out of memory, delete /usr/include lines.
845 !NO!SUBS!
846
847 $eunicefix Makefile
848 case `pwd` in
849 *SH)
850     $rm -f ../Makefile
851     $ln Makefile ../Makefile
852     ;;
853 esac
854 $rm -f $firstmakefile
855
856 # Now do any special processing required before building.
857
858 case "$ebcdic" in
859 $define)
860     xxx=''
861     echo "This is an EBCDIC system, checking if any parser files need regenerating." >&4
862 case "$osname" in
863 os390|posix-bc)
864     rm -f y.tab.c y.tab.h
865     # yacc must be a reentrant ("pure") Bison in BS2000 Posix!
866     yacc -d perly.y >/dev/null 2>&1
867     if cmp -s y.tab.c perly.c; then
868         rm -f y.tab.c
869     else
870         echo "perly.y -> perly.c" >&2
871         mv -f y.tab.c perly.c
872         chmod u+w perly.c
873         sed -e '/^#include "perl\.h"/a\
874 \
875 #define yydebug    PL_yydebug\
876 #define yynerrs    PL_yynerrs\
877 #define yyerrflag  PL_yyerrflag\
878 #define yychar     PL_yychar\
879 #define yyval      PL_yyval\
880 #define yylval     PL_yylval'                           \
881             -e '/YYSTYPE *yyval;/D'                     \
882             -e '/YYSTYPE *yylval;/D'                    \
883             -e '/int  yychar,/,/yynerrs;/D'             \
884             -e 's/int yydebug = 0;/yydebug = 0;/'       \
885             -e 's/[^_]realloc(/PerlMem_realloc(/g'      \
886             -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
887             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
888         xxx="$xxx perly.c"
889     fi
890     if cmp -s y.tab.h perly.h; then
891         rm -f y.tab.h
892     else
893         echo "perly.y -> perly.h" >&2
894         mv -f y.tab.h perly.h
895         xxx="$xxx perly.h"
896     fi
897     if cd x2p
898     then
899         rm -f y.tab.c y.tab.h
900         case "$osname" in
901         posix-bc)
902            # we are using two different yaccs in BS2000 Posix!
903            byacc a2p.y >/dev/null 2>&1
904            ;;
905         *) # e.g. os390
906            yacc  a2p.y >/dev/null 2>&1
907            ;;
908         esac
909         if cmp -s y.tab.c a2p.c
910         then
911             rm -f y.tab.c
912         else
913             echo "a2p.y -> a2p.c" >&2
914             mv -f y.tab.c a2p.c
915             chmod u+w a2p.c
916             sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
917                 -e 's/y\.tab/a2p/g' a2p.c >a2p.tmp && mv a2p.tmp a2p.c
918             xxx="$xxx a2p.c"
919         fi
920         # In case somebody yacc -d:ed the a2p.y.
921         if test -f y.tab.h
922         then
923             if cmp -s y.tab.h a2p.h
924             then
925                 rm -f y.tab.h
926             else
927                 echo "a2p.h -> a2p.h" >&2
928                 mv -f y.tab.h a2p.h
929                 xxx="$xxx a2p.h"
930             fi
931         fi
932         cd ..
933     fi
934     ;;
935 vmesa)
936     # Do nothing in VM/ESA.
937     ;;
938 *)
939     echo "'$osname' is an EBCDIC system I don't know that well." >&4
940     ;;
941 esac
942     case "$xxx" in
943     '') echo "No parser files were regenerated.  That's okay." >&2 ;;
944     esac
945     ;;
946 esac
947