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