aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5648b57..4bbbd9c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,10 @@
PREFIX = /usr/local
+MANPREFIX = $(PREFIX)/man
+
#CPPFLAGS += -DDEBUG
#CFLAGS += -g
LDLIBS = -lncursesw
+
OBJ = noice.o strlcpy.o
BIN = noice
@@ -18,10 +21,14 @@ install: all
@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
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
clean:
rm -f $(BIN) $(OBJ)