diff options
author | lostd <lostd@2f30.org> | 2014-10-22 18:24:05 +0300 |
---|---|---|
committer | lostd <lostd@2f30.org> | 2014-10-22 18:24:16 +0300 |
commit | 7ee4928a3f10e03186578e5da3a8eb44cc4e6b46 (patch) | |
tree | e80563d1734800458b668801fe464beb1161664a /Makefile | |
parent | 32bce991be84ba1e5ae1cb81bfe48738e4977077 (diff) | |
download | nnn-7ee4928a3f10e03186578e5da3a8eb44cc4e6b46.tar.gz |
Just let the commands show up
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -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) |