From 4c3fea5028b6156ad44901f6058c98745bd5279f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 18 Aug 2009 20:25:12 +0200 Subject: Added host(1) manpage --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 53db794..2bdcd94 100644 --- a/Makefile +++ b/Makefile @@ -8,12 +8,15 @@ bin/%: src/%.c $(CC) $(CFLAGS) -o $@ $< install: bin/host - mkdir -p $(prefix)/bin + mkdir -p $(prefix)/bin $(prefix)/share/man/man1 cp bin/host $(prefix)/bin/host + cp man/man1/host.1 $(prefix)/share/man/man1 chmod 755 $(prefix)/bin/host + chmod 755 $(prefix)/share/man/man1/host.1 uninstall: rm -f $(prefix)/bin/host + rm -f $(prefix)/share/man/man1/host.1 clean: rm -f bin/host -- cgit v1.2.3