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