From e3dfa22a481ad86ab798ce933665d9fe5f12c170 Mon Sep 17 00:00:00 2001 From: Georgi Chorbadzhiyski Date: Tue, 4 Oct 2011 14:58:53 +0300 Subject: [PATCH] Makefile: Show INSTALL/REMOVE messages when make install/uninstall is run. Without these messages the user have no idea what is happening and this can be very confusing. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 9b3eb4c..98c42bf 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ all: @echo "Run \"make install\" to install biTStream into $(INCLUDE)" install: + @echo "INSTALL $(INCLUDE)" @install -d $(INCLUDE) @install -m 644 common.h $(INCLUDE)/ @install -d $(INCLUDE)/dvb @@ -15,6 +16,7 @@ install: @install -m 644 mpeg/* $(INCLUDE)/mpeg uninstall: + @echo "REMOVE $(INCLUDE)" @rm -rf $(INCLUDE) .PHONY: install uninstall