This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Pod::Text fixes
[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]*)
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) $(libs)
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 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
285         quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
286
287 # This version, if specified in Configure, does ONLY those scripts which need
288 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
289 # checks as well as the special code to validate that the script in question
290 # has been invoked correctly.
291
292 suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
293         $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
294
295 !NO!SUBS!
296
297 fi
298
299 $spitshell >>Makefile <<'!NO!SUBS!'
300
301 sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
302         $(RMS) sperl.c
303         $(LNS) perl.c sperl.c
304         $(CCCMD) -DIAMSUID sperl.c
305         $(RMS) sperl.c
306
307 # We have to call our ./makedir because Ultrix 4.3 make can't handle the line
308 #       test -d lib/auto || mkdir lib/auto
309 #
310 preplibrary: miniperl lib/Config.pm $(plextract)
311         @sh ./makedir lib/auto
312         @echo " AutoSplitting perl library"
313         @./miniperl -Ilib -e 'use AutoSplit; \
314                 autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm
315
316 # Take care to avoid modifying lib/Config.pm without reason
317 lib/Config.pm: config.sh miniperl configpm
318         ./miniperl configpm tmp
319         sh mv-if-diff tmp lib/Config.pm
320
321 lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
322         ./miniperl minimod.pl > tmp && mv tmp $@
323
324 $(plextract):   miniperl lib/Config.pm
325         ./miniperl -Ilib $@.PL
326
327 install: all install.perl install.man
328
329 install.perl:   all installperl
330         ./perl installperl
331
332 install.man:    all installman
333         ./perl installman
334
335 # Not implemented yet.
336 #install.html:  all installhtml
337 #       ./perl installhtml
338
339 # I now supply perly.c with the kits, so the following section is
340 # used only if you force byacc to run by saying
341 #       make run_byacc
342 # Since we patch up the byacc output, the perly.fixer script needs
343 # to run with precisely the same version of byacc as I use.  You
344 # normally shouldn't remake perly.[ch].
345
346 run_byacc:      FORCE
347         @ echo 'Expect' 113 shift/reduce and 1 reduce/reduce conflict
348         $(BYACC) -d perly.y
349         sh $(shellflags) ./perly.fixer y.tab.c perly.c
350         sed -e 's/fprintf *( *stderr *,/PerlIO_printf(Perl_debug_log,/g' \
351             -e 's/y\.tab/perly/g' perly.c >perly.tmp && mv perly.tmp perly.c
352         echo 'extern YYSTYPE yylval;' >>y.tab.h
353         cmp -s y.tab.h perly.h && rm -f y.tab.h || mv y.tab.h perly.h
354         - perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms
355
356 # We don't want to regenerate perly.c and perly.h, but they might
357 # appear out-of-date after a patch is applied or a new distribution is
358 # made.
359 perly.c: perly.y
360         -@sh -c true
361
362 perly.h: perly.y
363         -@sh -c true
364
365 # The following three header files are generated automatically
366 #       keywords.h:     keywords.pl
367 #       opcode.h:       opcode.pl
368 #       embed.h:        embed.pl global.sym interp.sym
369 # The correct versions should be already supplied with the perl kit,
370 # in case you don't have perl available.
371 # To force them to run, type
372 #       make regen_headers
373 regen_headers:  FORCE
374         perl keywords.pl
375         perl opcode.pl
376         perl embed.pl
377
378 # Extensions:
379 # Names added to $(dynamic_ext) or $(static_ext) will automatically
380 # get built.  There should ordinarily be no need to change any of
381 # this part of makefile.
382 #
383 # The dummy dependency is a place holder in case $(dynamic_ext) or
384 # $(static_ext) is empty.
385 #
386 # DynaLoader may be needed for extensions that use Makefile.PL.
387
388 $(DYNALOADER):  miniperl preplibrary FORCE
389         @sh ext/util/make_ext static $@ LIBPERL_A=$(LIBPERL)
390
391 d_dummy $(dynamic_ext): miniperl preplibrary $(DYNALOADER) FORCE
392         @sh ext/util/make_ext dynamic $@ LIBPERL_A=$(LIBPERL)
393
394 s_dummy $(static_ext):  miniperl preplibrary $(DYNALOADER) FORCE
395         @sh ext/util/make_ext static $@ LIBPERL_A=$(LIBPERL)
396
397 clean:          _tidy _mopup
398
399 realclean:      _cleaner _mopup
400         @echo "Note that make realclean does not delete config.sh"
401
402 clobber:        _cleaner _mopup
403         rm -f config.sh cppstdin
404
405 distclean:      clobber
406
407 # Do not 'make _mopup' directly.
408 _mopup:
409         rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
410         rm -f perl.exp ext.libs
411         -rm -f perl.export perl.dll perl.libexp perl.map perl.def
412         rm -f perl suidperl miniperl $(LIBPERL)
413
414 # Do not 'make _tidy' directly.
415 _tidy:
416         -cd pod; $(MAKE) clean
417         -cd utils; $(MAKE) clean
418         -cd x2p; $(MAKE) clean
419         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
420         sh ext/util/make_ext clean $$x ; \
421         done
422
423 # Do not 'make _cleaner' directly.
424 _cleaner:
425         -cd os2; rm -f Makefile
426         -cd pod; $(MAKE) realclean
427         -cd utils; $(MAKE) realclean
428         -cd x2p; $(MAKE) realclean
429         -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
430         sh ext/util/make_ext realclean $$x ; \
431         done
432         rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
433         rm -rf $(addedbyconf)
434         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
435         rm -f $(private)
436         rm -rf lib/auto
437         rm -f lib/.exists
438         rm -f h2ph.man pstruct
439         rm -rf .config
440
441 # The following lint has practically everything turned on.  Unfortunately,
442 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
443 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
444 # for that spot.
445
446 lint: perly.c $(c)
447         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
448
449 # Need to unset during recursion to go out of loop
450
451 MAKEDEPEND = makedepend
452
453 $(FIRSTMAKEFILE):       Makefile $(MAKEDEPEND)
454         $(MAKE) depend MAKEDEPEND=
455
456 config.h: config_h.SH config.sh
457         $(SHELL) config_h.SH
458
459 perl.exp: perl_exp.SH config.sh
460         $(SHELL) perl_exp.SH
461
462 # When done, touch perlmain.c so that it doesn't get remade each time.
463 depend: makedepend
464         sh ./makedepend
465         - test -s perlmain.c && touch perlmain.c
466         cd x2p; $(MAKE) depend
467
468 # Cannot postpone this until $firstmakefile is ready ;-)
469 makedepend: makedepend.SH config.sh
470         sh ./makedepend.SH
471
472 check test: miniperl perl preplibrary $(dynamic_ext)
473         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) && ./perl TEST </dev/tty
474
475 # Can't depend on lib/Config.pm because that might be where miniperl
476 # is crashing.
477 minitest: miniperl
478         @echo "You may see some irrelevant test failures if you have been unable"
479         @echo "to build lib/Config.pm."
480         - cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
481                 && ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t </dev/tty
482
483 clist:  $(c)
484         echo $(c) | tr ' ' '\012' >.clist
485
486 hlist:  $(h)
487         echo $(h) | tr ' ' '\012' >.hlist
488
489 shlist: $(sh)
490         echo $(sh) | tr ' ' '\012' >.shlist
491
492 pllist: $(pl)
493         echo $(pl) | tr ' ' '\012' >.pllist
494
495 Makefile: Makefile.SH ./config.sh
496         $(SHELL) Makefile.SH
497
498 distcheck: FORCE
499         perl '-MExtUtils::Manifest=&fullcheck' -e 'fullcheck()'
500
501 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
502 # If this runs make out of memory, delete /usr/include lines.
503 !NO!SUBS!
504
505 $eunicefix Makefile
506 case `pwd` in
507 *SH)
508     $rm -f ../Makefile
509     $ln Makefile ../Makefile
510     ;;
511 esac
512 $rm -f $firstmakefile