Commit e3dfa22a authored by Georgi Chorbadzhiyski's avatar Georgi Chorbadzhiyski

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.
parent 572e209b
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment