Just let the commands show up

This commit is contained in:
lostd 2014-10-22 18:24:05 +03:00
parent 32bce991be
commit 7ee4928a3f

View file

@ -17,18 +17,13 @@ noice.o: queue.h util.h config.h
strlcpy.o: util.h strlcpy.o: util.h
install: all install: all
@echo installing $(BIN) to $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
@mkdir -p $(DESTDIR)$(PREFIX)/bin cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
@cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
@chmod 755 $(DESTDIR)$(PREFIX)/bin/$(BIN)
@echo installing $(BIN).1 to $(DESTDIR)$(MANPREFIX)/man1
@cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
uninstall: uninstall:
@echo removing $(BIN) from $(DESTDIR)$(PREFIX)/bin rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
@rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN) rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
@echo removing $(BIN).1 from $(DESTDIR)$(MANPREFIX)/man1
@rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
clean: clean:
rm -f $(BIN) $(OBJ) rm -f $(BIN) $(OBJ)