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