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