From 7ee4928a3f10e03186578e5da3a8eb44cc4e6b46 Mon Sep 17 00:00:00 2001 From: lostd Date: Wed, 22 Oct 2014 18:24:05 +0300 Subject: [PATCH] Just let the commands show up --- Makefile | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 4bbbd9c0..22130a54 100644 --- a/Makefile +++ b/Makefile @@ -17,18 +17,13 @@ noice.o: queue.h util.h config.h strlcpy.o: util.h install: all - @echo installing $(BIN) to $(DESTDIR)$(PREFIX)/bin - @mkdir -p $(DESTDIR)$(PREFIX)/bin - @cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin - @chmod 755 $(DESTDIR)$(PREFIX)/bin/$(BIN) - @echo installing $(BIN).1 to $(DESTDIR)$(MANPREFIX)/man1 - @cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1 + mkdir -p $(DESTDIR)$(PREFIX)/bin + cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin + cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1 uninstall: - @echo removing $(BIN) from $(DESTDIR)$(PREFIX)/bin - @rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN) - @echo removing $(BIN).1 from $(DESTDIR)$(MANPREFIX)/man1 - @rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1 + rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN) + rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1 clean: rm -f $(BIN) $(OBJ)