summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-07-31 09:35:33 -0400
committerDave Reisner <dreisner@archlinux.org>2014-07-31 09:35:33 -0400
commit2b7f3111546b0e6c364d23bcb15269f2b5dcf1a1 (patch)
treea9626585cb8ce208c37bfcfa2d38211a703df1af /Makefile
parentd93cd0287cf935a7fc41e7cde46572775eaa8319 (diff)
downloadasp32-2b7f3111546b0e6c364d23bcb15269f2b5dcf1a1.tar.xz
install manpage
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92f72b0..542377b 100644
--- a/Makefile
+++ b/Makefile
@@ -35,8 +35,9 @@ clean:
$(RM) $(BINPROGS) $(MANPAGES)
install: all
- install -dm755 $(DESTDIR)$(PREFIX)/bin
+ install -dm755 $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1
install -m755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin
+ install -m644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
dist:
git archive --format=tar --prefix=$(PACKAGE_NAME)-$(VER)/ v$(VER) | gzip -9 > $(PACKAGE_NAME)-$(VER).tar.gz