diff options
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH index 71a077e924..ce3cbda9a3 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. |