
commit b730c8fed6f494bd64d53bb871aae5f9ca4c06d3 Author: David Fifield <david@bamsoftware.com> Date: Sat Nov 24 02:32:10 2012 -0800 Define a CLIENT_DIST_DOC_FILES separate from CLIENT_MAN. --- Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 7e56448..5203922 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ VERSION = 0.8 CLIENT_BIN = flashproxy-client flashproxy-reg-email flashproxy-reg-http CLIENT_MAN = doc/flashproxy-client.1 doc/flashproxy-reg-email.1 doc/flashproxy-reg-http.1 CLIENT_DIST_FILES = $(CLIENT_BIN) README LICENSE torrc +CLIENT_DIST_DOC_FILES = $(CLIENT_MAN) all: $(CLIENT_DIST_FILES) $(CLIENT_MAN) : @@ -41,7 +42,7 @@ dist: $(CLIENT_MAN) mkdir -p $(DISTDIR) mkdir $(DISTDIR)/doc cp -f $(CLIENT_DIST_FILES) $(DISTDIR) - cp -f $(CLIENT_MAN) $(DISTDIR)/doc + cp -f $(CLIENT_DIST_DOC_FILES) $(DISTDIR)/doc cd dist && zip -q -r -9 $(DISTNAME).zip $(DISTNAME) dist/$(DISTNAME).zip: $(CLIENT_DIST_FILES)