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