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