diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-03 16:09:36 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-03 16:09:36 +0000 |
commit | 8374d37a1cf6213f384d76ea4f9a4b0e1fe8a871 (patch) | |
tree | b49edb1bdeb9bc3b045558eff7b92083f43e9529 /Makefile.SH | |
parent | 9741dab02becad0550bba7d5ca9e59f8ac608b2d (diff) | |
download | perl-8374d37a1cf6213f384d76ea4f9a4b0e1fe8a871.tar.gz |
avoid doing irrelevant things on 'make perl'
p4raw-id: //depot/perl@4295
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH index bf98183e06..6693565b55 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -257,7 +257,7 @@ lintflags = -hbvxac .c$(OBJ_EXT): $(CCCMD) $(PLDLFLAGS) $*.c -all: $(FIRSTMAKEFILE) miniperl $(private) $(plextract) $(public) $(dynamic_ext) $(nonxs_ext) +all: $(FIRSTMAKEFILE) miniperl $(private) $(public) $(dynamic_ext) $(nonxs_ext) @echo " "; @echo " Everything is up to date. 'make test' to run test suite." @@ -270,7 +270,7 @@ compile: all translators: miniperl lib/Config.pm FORCE @echo " "; echo " Making x2p stuff"; cd x2p; $(LDLIBPTH) $(MAKE) all -utilities: miniperl lib/Config.pm FORCE +utilities: miniperl lib/Config.pm $(plextract) FORCE @echo " "; echo " Making utilities"; cd utils; $(LDLIBPTH) $(MAKE) all @@ -454,7 +454,7 @@ sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h) # We have to call our ./makedir because Ultrix 4.3 make can't handle the line # test -d lib/auto || mkdir lib/auto # -preplibrary: miniperl lib/Config.pm $(plextract) +preplibrary: miniperl lib/Config.pm @sh ./makedir lib/auto @echo " AutoSplitting perl library" $(LDLIBPTH) ./miniperl -Ilib -e 'use AutoSplit; \ |