about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d53562f..4957f82 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
 BIN = ministat 
 SRCS= ministat.c
 OBJS= ministat.o
+MAN = ministat.1
 
 PKGS = 
 
@@ -25,6 +26,7 @@ $(OBJS): %.o: %.c
 install:
 	install -d $(PREFIX)/bin
 	install -m 0755 $(BIN) $(PREFIX)/bin/$(BIN)
+	install -m 0755 $(MAN) $(PREFIX)/share/man/man1/$(MAN)
 
 clean:
 	-rm -rf $(BIN) *.o *.core