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