[tor-commits] [flashproxy/master] Install man pages on "make install".
dcf at torproject.org
dcf at torproject.org
Tue Nov 13 04:21:40 UTC 2012
commit 9f1878b28dd11de342a1b3d0b7b71a24e9a6b3b4
Author: David Fifield <david at bamsoftware.com>
Date: Mon Nov 12 20:10:53 2012 -0800
Install man pages on "make install".
---
Makefile | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index cdbf30c..b52f962 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
PREFIX = /usr/local
BINDIR = $(PREFIX)/bin
+MANDIR = $(PREFIX)/share/man
VERSION = 0.8
@@ -12,7 +13,9 @@ all:
install:
mkdir -p $(BINDIR)
- cp -f flashproxy-client flashproxy-reg-email flashproxy-reg-http $(BINDIR)
+ mkdir -p $(MANDIR)/man1
+ cp -f $(CLIENT_EXECUTABLES) $(BINDIR)
+ cp -f $(CLIENT_MANPAGES) $(MANDIR)/man1
clean:
rm -f *.pyc
More information about the tor-commits
mailing list