This is patch.2b1f to perl5.002beta1.
[p5sagit/p5-mst-13.2.git] / Makefile.SH
1 case $CONFIG in
2 '')
3         if test -f config.sh; then TOP=.;
4         elif 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         else
9                 echo "Can't find config.sh."; exit 1
10         fi
11         . $TOP/config.sh
12         ;;
13 esac
14 : This forces SH files to create target in same directory as SH file.
15 : This is so that make depend always knows where to find SH derivatives.
16 case "$0" in
17 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
18 esac
19
20 case "$d_dosuid" in
21 *define*) suidperl='suidperl' ;;
22 *) suidperl='';;
23 esac
24
25 shrpenv=""
26 case "$d_shrplib" in
27 *define*)
28     patchlevel=`egrep '^#define[        ]+PATCHLEVEL' patchlevel.h \
29         | awk '{print $3}'`
30     case "$patchlevel" in
31      *[0-9]) plibsuf=.$so.$patchlevel;;
32      *)     plibsuf=.$so;;
33     esac
34     case "$shrpdir" in
35      /usr/lib)  ;;
36      "")        ;;
37      *)         shrpenv="env LD_RUN_PATH=$shrpdir";;
38     esac
39     pldlflags="$cccdlflags";;
40 *)  plibsuf=.a
41     pldlflags="";;
42 esac
43
44 : Prepare dependency lists for Makefile.
45 dynamic_list=' '
46 for f in $dynamic_ext; do
47     : the dependency named here will never exist
48       base=`echo "$f" | sed 's/.*\///'`
49     dynamic_list="$dynamic_list lib/auto/$f/$base.$dlext"
50 done
51
52 static_list=' '
53 static_ai_list=' '
54 for f in $static_ext; do
55         base=`echo "$f" | sed 's/.*\///'`
56         static_list="$static_list lib/auto/$f/$base.a"
57         if test -f ext/$f/AutoInit.c; then
58             static_ai_list="$static_ai_list ext/$f/AutoInit.c"
59         fi
60         if test -f ext/$f/AutoInit.pl; then
61             static_ai_list="$static_ai_list ext/$f/AutoInit.pl"
62         fi
63 done
64
65 echo "Extracting Makefile (with variable substitutions)"
66 $spitshell >Makefile <<'!NO!SUBS!'
67 # Makefile.SH
68 # This file is derived from Makefile.SH.  Any changes made here will
69 # be lost the next time you run Configure.
70 #  Makefile is used to generate makefile.  The only difference
71 #  is that makefile has the dependencies filled in at the end.
72 #
73 #
74 !NO!SUBS!
75
76 $spitshell >>Makefile <<!GROK!THIS!
77 # I now supply perly.c with the kits, so don't remake perly.c without byacc
78 BYACC = $byacc
79 CC = $cc
80 LD = $ld
81
82 LDFLAGS = $ldflags
83 CLDFLAGS = $ldflags
84
85 SMALL = $small
86 LARGE = $large $split
87 mallocsrc = $mallocsrc
88 mallocobj = $mallocobj
89 LNS = $lns
90 RMS = rm -f
91 ranlib = $ranlib
92
93 # The following are mentioned only to make metaconfig include the
94 # appropriate questions in Configure.  If you want to change these,
95 # edit config.sh instead, or specify --man1dir=/wherever on
96 # installman commandline.
97 bin = $installbin
98 scriptdir = $scriptdir
99 privlib = $installprivlib
100 man1dir = $man1dir
101 man1ext = $man1ext
102 man3dir = $man3dir
103 man3ext = $man3ext
104
105 # The following are used to build and install shared libraries for
106 # dynamic loading.
107 LDDLFLAGS = $lddlflags
108 CCDLFLAGS = $ccdlflags
109 DLSUFFIX = .$dlext
110 PLDLFLAGS = $pldlflags
111 PLIBSUF = $plibsuf
112 SHRPENV = $shrpenv
113
114 dynamic_ext = $dynamic_list
115 static_ext = $static_list
116 ext = \$(dynamic_ext) \$(static_ext)
117 static_ext_autoinit = $static_ai_list
118 DYNALOADER = lib/auto/DynaLoader/DynaLoader.a
119
120
121 libs = $libs $cryptlib
122
123 public = perl $suidperl
124
125 shellflags = $shellflags
126
127 ## To use an alternate make, set \$altmake in config.sh.
128 MAKE = ${altmake-make}
129
130 # These variables will be used in a future version to make
131 # the make file more portable to non-unix systems.
132 AR = $ar
133 EXE_EXT = $exe_ext
134 LIB_EXT = $lib_ext
135 OBJ_EXT = $obj_ext
136 PATH_SEP = $path_sep
137
138 FIRSTMAKEFILE = $firstmakefile
139
140 # Any special object files needed by this architecture, e.g. os2/os2.obj
141 ARCHOBJS = $archobjs
142
143 !GROK!THIS!
144
145 ## In the following dollars and backticks do not need the extra backslash.
146 $spitshell >>Makefile <<'!NO!SUBS!'
147
148 CCCMD = `sh $(shellflags) cflags $(perllib) $@`
149
150 private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm
151
152 # Files to be built with variable substitution before miniperl
153 # is available.
154 sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
155         makedir.SH perl_exp.SH writemain.SH
156
157 shextract = Makefile cflags config.h makeaperl makedepend \
158         makedir perl_exp writemain
159
160 # Files to be built with variable substitution after miniperl is
161 # available.  Dependencies handled manually below (for now).
162
163 pl = c2ph.PL h2ph.PL h2xs.PL perldoc.PL \
164         pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL
165
166 plextract = c2ph h2ph h2xs perldoc \
167         pod/pod2html pod/pod2latex pod/pod2man
168
169 addedbyconf = UU $(shextract) $(plextract) pstruct
170
171 h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
172 h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
173 h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
174 h4 = regexp.h scope.h sv.h unixish.h util.h
175 h = $(h1) $(h2) $(h3) $(h4)
176
177 c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
178 c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
179 c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c globals.c
180
181 c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c
182
183 obj1 = $(mallocobj) gv.o toke.o perly.o op.o regcomp.o dump.o util.o mg.o
184 obj2 = hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o
185 obj3 = doop.o doio.o regexec.o taint.o deb.o globals.o
186
187
188 obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
189
190 # Once perl has been Configure'd and built ok you build different
191 # perl variants (Debugging, Embedded, Multiplicity etc) by saying:
192 #       make clean; make perllib=libperl<type>.a
193 # where <type> is some combination of 'd' and(or) 'e' or 'm'.
194 # See cflags to understand how this works.
195 #
196 # Eventually some form of 'make-a-perl' script will automate this
197 # together with linking a perl executable with any desired
198 # static modules.
199 perllib = libperl$(PLIBSUF)
200
201 lintflags = -hbvxac
202
203 # grrr
204 SHELL = /bin/sh
205
206 .c.o:
207         $(CCCMD) $(PLDLFLAGS) $*.c
208
209 all: makefile miniperl $(private) $(plextract) $(public) $(dynamic_ext)
210         @echo " "; echo "       Making x2p stuff"; cd x2p; $(MAKE) all
211
212 # This is now done by installman only if you actually want the man pages.
213 #       @echo " "; echo "       Making docs"; cd pod; $(MAKE) all;
214
215 # Phony target to force checking subdirectories.
216 # Apparently some makes require an action for the FORCE target.
217 FORCE:
218         @sh -c true
219
220 # The $& notation tells Sequent machines that it can do a parallel make,
221 # and is harmless otherwise.
222
223 miniperl: $& miniperlmain.o $(perllib)
224         $(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain.o $(perllib) $(libs)
225
226 miniperlmain.o: miniperlmain.c
227         $(CCCMD) $(PLDLFLAGS) $*.c
228
229 perlmain.c: miniperlmain.c config.sh makefile $(static_ext_autoinit)
230         sh writemain $(DYNALOADER) $(static_ext) > tmp
231         sh mv-if-diff tmp perlmain.c
232
233 perlmain.o: perlmain.c
234         $(CCCMD) $(PLDLFLAGS) $*.c
235
236 # The file ext.libs is a list of libraries that must be linked in
237 # for static extensions, e.g. -lm -lgdbm, etc.  The individual
238 # static extension Makefile's add to it.
239 ext.libs: $(static_ext)
240         -@test -f ext.libs || touch ext.libs
241
242 perl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
243         $(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
244
245 pureperl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
246         purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
247
248 quantperl: $& perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
249         quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
250
251 $(perllib): $& perl.o $(obj)
252 !NO!SUBS!
253
254 case "$d_shrplib" in
255 *define*)
256 $spitshell >>Makefile <<'!NO!SUBS!'
257         $(LD) $(LDDLFLAGS) -o $@ perl.o $(obj)
258 !NO!SUBS!
259 ;;
260 *)
261 $spitshell >>Makefile <<'!NO!SUBS!'
262         rm -f $(perllib)
263         $(AR) rcu $(perllib) perl.o $(obj)
264         @$(ranlib) $(perllib)
265 !NO!SUBS!
266 ;;
267 esac
268
269 $spitshell >>Makefile <<'!NO!SUBS!'
270
271 # This version, if specified in Configure, does ONLY those scripts which need
272 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
273 # checks as well as the special code to validate that the script in question
274 # has been invoked correctly.
275
276 suidperl: $& sperl.o perlmain.o $(perllib) $(DYNALOADER) $(static_ext) ext.libs
277         $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain.o sperl.o $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)
278
279 sperl.o: perl.c perly.h patchlevel.h $(h)
280         $(RMS) sperl.c
281         $(LNS) perl.c sperl.c
282         $(CCCMD) -DIAMSUID sperl.c
283         $(RMS) sperl.c
284
285 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
286 #       test -d lib/auto || mkdir lib/auto
287 #
288 preplibrary: miniperl lib/Config.pm $(plextract)
289         @./makedir lib/auto
290         @echo " AutoSplitting perl library"
291         @./miniperl -Ilib -e 'use AutoSplit; \
292                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
293
294 # Take care to avoid modifying lib/Config.pm without reason
295 lib/Config.pm: config.sh miniperl
296         ./miniperl configpm tmp
297         sh mv-if-diff tmp lib/Config.pm
298
299 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
300         ./miniperl minimod.pl > tmp && mv tmp $@
301
302 $(plextract):   miniperl lib/Config.pm
303         ./miniperl -Ilib $@.PL
304
305 install: all install.perl install.man
306
307 install.perl:   all
308         ./perl installperl
309
310 install.man:    all
311         ./perl installman
312
313 # Not implemented yet.
314 #install.html:  all
315 #       ./perl installhtml
316
317 # I now supply perly.c with the kits, so the following section is
318 # used only if you force byacc to run by saying
319 #       make run_byacc
320 # Since we patch up the byacc output, the perly.fixer script needs
321 # to run with precisely the same version of byacc as I use.  You
322 # normally shouldn't remake perly.[ch].
323
324 run_byacc:      FORCE
325         @ echo 'Expect' 129 shift/reduce and 1 reduce/reduce conflict
326         $(BYACC) -d perly.y
327         sh $(shellflags) ./perly.fixer y.tab.c perly.c
328         mv y.tab.h perly.h
329         echo 'extern YYSTYPE yylval;' >>perly.h
330         - perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
331
332 # We don't want to regenerate perly.c and perly.h, but they might
333 # appear out-of-date after a patch is applied or a new distribution is
334 # made.
335 perly.c: perly.y
336         -@touch perly.c
337
338 perly.h: perly.y
339         -@touch perly.h
340
341 # The following three header files are generated automatically
342 #       keywords.h:     keywords.pl
343 #       opcode.h:       opcode.pl
344 #       embed.h:        embed.pl global.sym interp.sym
345 # The correct versions should be already supplied with the perl kit,
346 # in case you don't have perl available.
347 # To force them to run, type
348 #       make regen_headers
349 regen_headers:  FORCE
350         perl keywords.pl
351         perl opcode.pl
352         perl embed.pl
353
354 # Extensions:
355 # Names added to $(dynamic_ext) or $(static_ext) will automatically
356 # get built.  There should ordinarily be no need to change any of
357 # this part of makefile.
358 #
359 # The dummy dependency is a place holder in case $(dynamic_ext) or
360 # $(static_ext) is empty.
361 #
362 # DynaLoader may be needed for extensions that use Makefile.PL.
363
364 $(DYNALOADER):  miniperl preplibrary FORCE
365         @sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)
366
367 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
368         @sh ext/util/make_ext dynamic $@ LIBPERL_A=$(perllib)
369
370 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
371         @sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)
372
373 clean:
374         rm -f *.o *.a all perlmain.c
375         rm -f perl.exp ext.libs
376         -cd x2p; $(MAKE) clean
377         -cd pod; $(MAKE) clean
378         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
379         sh ext/util/make_ext clean $$x ; \
380         done
381         rm -f perl suidperl miniperl $(perllib)
382
383 realclean: clean
384         -cd x2p; $(MAKE) realclean
385         -cd pod; $(MAKE) realclean
386         -cd os2; rm -f Makefile
387         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
388         sh ext/util/make_ext realclean $$x ; \
389         done
390         rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
391         rm -rf $(addedbyconf)
392         rm -f makefile makefile.old
393         rm -f $(private)
394         rm -rf lib/auto
395         rm -f lib/.exists
396         rm -f h2ph.man pstruct
397         rm -rf .config
398         @echo "Note that make realclean does not delete config.sh"
399
400 clobber:        realclean
401         rm -f config.sh cppstdin
402
403 distclean:      clobber
404
405 # The following lint has practically everything turned on.  Unfortunately,
406 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
407 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
408 # for that spot.
409
410 lint: perly.c $(c)
411         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
412
413 makefile:       Makefile
414         $(MAKE) depend
415
416 config.h: config.sh
417         /bin/sh config_h.SH
418
419 # When done, touch perlmain.c so that it doesn't get remade each time.
420 depend: makedepend
421         ./makedepend
422         - test -s perlmain.c && touch perlmain.c
423         cd x2p; $(MAKE) depend
424
425 test: miniperl perl preplibrary $(dynamic_ext)
426         - cd t && chmod +x TEST */*.t
427         - cd t && (rm -f perl; $(LNS) ../perl perl) && ./perl TEST </dev/tty
428
429 minitest: miniperl
430         - cd t && chmod +x TEST */*.t
431         - cd t && (rm -f perl; $(LNS) ../miniperl perl) \
432                 && ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t </dev/tty
433
434 clist:  $(c)
435         echo $(c) | tr ' ' '\012' >.clist
436
437 hlist:  $(h)
438         echo $(h) | tr ' ' '\012' >.hlist
439
440 shlist: $(sh)
441         echo $(sh) | tr ' ' '\012' >.shlist
442
443 pllist: $(pl)
444         echo $(pl) | tr ' ' '\012' >.pllist
445
446 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
447 # If this runs make out of memory, delete /usr/include lines.
448 !NO!SUBS!
449
450 $eunicefix Makefile
451 case `pwd` in
452 *SH)
453     $rm -f ../Makefile
454     ln Makefile ../Makefile
455     ;;
456 esac
457 rm -f makefile