This fixes bug 10416; thanks to mvanbaak for the pretty output

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@78891 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Steve Murphy 18 years ago
parent 48d9158cdd
commit 1e085b5dfb

@ -280,7 +280,11 @@ all: _all
@echo " + Asterisk has successfully been built, and +" @echo " + Asterisk has successfully been built, and +"
@echo " + can be installed by running: +" @echo " + can be installed by running: +"
@echo " + +" @echo " + +"
ifeq ($(MAKE), gmake)
@echo " + $(MAKE) install +"
else
@echo " + $(MAKE) install +" @echo " + $(MAKE) install +"
endif
@echo " +-------------------------------------------+" @echo " +-------------------------------------------+"
_all: cleantest $(SUBDIRS) _all: cleantest $(SUBDIRS)
@ -482,14 +486,22 @@ install: datafiles bininstall $(SUBDIRS_INSTALL)
@echo " + configuration files (overwriting any +" @echo " + configuration files (overwriting any +"
@echo " + existing config files), run: +" @echo " + existing config files), run: +"
@echo " + +" @echo " + +"
ifeq ($(MAKE), gmake)
@echo " + $(MAKE) samples +"
else
@echo " + $(MAKE) samples +" @echo " + $(MAKE) samples +"
endif
@echo " + +" @echo " + +"
@echo " +----------------- or ---------------------+" @echo " +----------------- or ---------------------+"
@echo " + +" @echo " + +"
@echo " + You can go ahead and install the asterisk +" @echo " + You can go ahead and install the asterisk +"
@echo " + program documentation now or later run: +" @echo " + program documentation now or later run: +"
@echo " + +" @echo " + +"
ifeq ($(MAKE), gmake)
@echo " + $(MAKE) progdocs +"
else
@echo " + $(MAKE) progdocs +" @echo " + $(MAKE) progdocs +"
endif
@echo " + +" @echo " + +"
@echo " + **Note** This requires that you have +" @echo " + **Note** This requires that you have +"
@echo " + doxygen installed on your local system +" @echo " + doxygen installed on your local system +"
@ -660,7 +672,11 @@ uninstall: _uninstall
@echo " + directories, and logs, run the following +" @echo " + directories, and logs, run the following +"
@echo " + command: +" @echo " + command: +"
@echo " + +" @echo " + +"
ifeq ($(MAKE), gmake)
@echo " + $(MAKE) uninstall-all +"
else
@echo " + $(MAKE) uninstall-all +" @echo " + $(MAKE) uninstall-all +"
endif
@echo " +-------------------------------------------+" @echo " +-------------------------------------------+"
uninstall-all: _uninstall uninstall-all: _uninstall

Loading…
Cancel
Save