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