From e5298a99f85e49698cd6564785d3b1cdec107fca Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 18 Jan 2006 23:11:43 +1000 Subject: [PATCH] Add friendly messages to Makefile commands darcs-hash:20060118131143-ac50b-8141e527e8047d4551548b629e01c18eef5d411e.gz --- Makefile.in | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index acc9af854..9478c0b3f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -162,6 +162,8 @@ TRANSLATIONS := $(TRANSLATIONS_SRC:.po=.gmo) #Make everything needed for installing fish all: $(PROGRAMS) user_doc + @echo fish has now been built. + @echo Use \'make install\' to install fish. debug: make fish CFLAGS="-O0 -Wno-unused -Werror -g @INCLUDEDIR@ -Wall -std=gnu99 -fno-strict-aliasing" @@ -323,8 +325,14 @@ install: all install-translations for i in $(MANUALS); do \ $(INSTALL) -m 644 $$i $(DESTDIR)$(mandir)/man1/; \ done; - @echo If you want to use fish as the default shell, remember to first - @echo add the line \'$(DESTDIR)$(bindir)/fish\' to the file \'/etc/shells\'. + @echo fish is now installed on your system. + @echo To run fish, type \'fish\' in your terminal. + @echo + @echo To use fish as your login shell: + @echo \* add the line \'$(DESTDIR)$(bindir)/fish\' to the file \'/etc/shells\'. + @echo \* use the command \'chsh -s $(DESTDIR)$(bindir)/fish\'. + @echo + @echo Have fun! uninstall: uninstall-translations for i in $(PROGRAMS); do \