From: Jarkko Hietaniemi Date: Thu, 24 Aug 2000 13:44:36 +0000 (+0000) Subject: Make "make install" by default silent. A new "install-verbose" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c77385cf2f94312c5b758f0fae0fd5b1afe51cd6;p=p5sagit%2Fp5-mst-13.2.git Make "make install" by default silent. A new "install-verbose" target is verbose. p4raw-id: //depot/perl@6796 --- diff --git a/Makefile.SH b/Makefile.SH index 71a077e..ce3cbda 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -553,7 +553,11 @@ extra.pods: miniperl install-strip: $(MAKE) STRIPFLAGS=-s install -install: all install.perl install.man +install: all + $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S + +install-verbose: all + $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS= install.perl: all installperl if [ -n "$(COMPILE)" ]; \ @@ -563,10 +567,10 @@ install.perl: all installperl cd ../pod; $(MAKE) compile; \ else :; \ fi - $(LDLIBPTH) ./perl installperl $(STRIPFLAGS) + $(LDLIBPTH) ./perl installperl $(INSTALLFLAGS) $(STRIPFLAGS) install.man: all installman - $(LDLIBPTH) ./perl installman + $(LDLIBPTH) ./perl installman $(INSTALLFLAGS) # XXX Experimental. Hardwired values, but useful for testing. # Eventually Configure could ask for some of these values.