aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-18 23:11:43 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-18 23:11:43 +1000
commite5298a99f85e49698cd6564785d3b1cdec107fca (patch)
tree1e5eebe27b748913c4f499be1e7296089012e0f8
parent05736978bb5621d33d9b34467a278f6cca095940 (diff)
Add friendly messages to Makefile commands
darcs-hash:20060118131143-ac50b-8141e527e8047d4551548b629e01c18eef5d411e.gz
-rw-r--r--Makefile.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index acc9af85..9478c0b3 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 \