[tor-commits] [flashproxy/master] Shorter variable names.

dcf at torproject.org dcf at torproject.org
Tue Nov 13 04:21:40 UTC 2012


commit 6565a134265f52ef6be6034994085e67410e9829
Author: David Fifield <david at bamsoftware.com>
Date:   Mon Nov 12 20:12:45 2012 -0800

    Shorter variable names.
    
    CLIENT_EXECUTABLES → CLIENT_BIN
    CLIENT_MANPAGES → CLIENT_MAN
---
 Makefile |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Makefile b/Makefile
index b52f962..5539c44 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,9 @@ MANDIR = $(PREFIX)/share/man
 
 VERSION = 0.8
 
-CLIENT_EXECUTABLES = flashproxy-client flashproxy-reg-email flashproxy-reg-http
-CLIENT_MANPAGES = doc/flashproxy-client.1 doc/flashproxy-reg-email.1 doc/flashproxy-reg-http.1
-CLIENT_DIST_FILES = $(CLIENT_EXECUTABLES) README LICENSE torrc
+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
 
 all:
 	:
@@ -14,8 +14,8 @@ all:
 install:
 	mkdir -p $(BINDIR)
 	mkdir -p $(MANDIR)/man1
-	cp -f $(CLIENT_EXECUTABLES) $(BINDIR)
-	cp -f $(CLIENT_MANPAGES) $(MANDIR)/man1
+	cp -f $(CLIENT_BIN) $(BINDIR)
+	cp -f $(CLIENT_MAN) $(MANDIR)/man1
 
 clean:
 	rm -f *.pyc
@@ -28,12 +28,12 @@ test:
 
 DISTNAME = flashproxy-client-$(VERSION)
 DISTDIR = dist/$(DISTNAME)
-dist: $(CLIENT_MANPAGES)
+dist: $(CLIENT_MAN)
 	rm -rf dist
 	mkdir -p $(DISTDIR)
 	mkdir $(DISTDIR)/doc
 	cp -f $(CLIENT_DIST_FILES) $(DISTDIR)
-	cp -f $(CLIENT_MANPAGES) $(DISTDIR)/doc
+	cp -f $(CLIENT_MAN) $(DISTDIR)/doc
 	cd dist && zip -q -r -9 $(DISTNAME).zip $(DISTNAME)
 
 dist/$(DISTNAME).zip: $(CLIENT_DIST_FILES)





More information about the tor-commits mailing list