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