From f34704397b5fba7fe175c1bcfa6c9b884efd7952 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Thu, 14 Jan 2016 21:46:48 +0100 Subject: [PATCH] Output some documentation after installing (#18) --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ea1746..87680d9 100644 --- a/Makefile +++ b/Makefile @@ -30,13 +30,17 @@ tgz: clean .PHONY: check uninstall check: - echo "Not implemented" + @echo "Not implemented" install: nethogs nethogs.8 install -d -m 755 $(DESTDIR)$(sbin) install -m 755 nethogs $(DESTDIR)$(sbin) install -d -m 755 $(DESTDIR)$(man8) install -m 644 nethogs.8 $(DESTDIR)$(man8) + @echo + @echo "Installed nethogs to $(DESTDIR)$(sbin)" + @echo + @echo "You might have to add this directory to your PATH and/or refresh your shells' path cache with a command like 'hash -r'." uninstall: rm $(DESTDIR)$(sbin)/nethogs