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