commit 95e0e74738ff20bbd52428cdc4bfc7ddc3653d32 Author: David Fifield david@bamsoftware.com Date: Sun Dec 2 10:49:36 2012 -0800
Put clean and test at the end of Makefile. --- Makefile | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/Makefile b/Makefile index a4682cd..9787571 100644 --- a/Makefile +++ b/Makefile @@ -22,15 +22,6 @@ install: cp -f $(CLIENT_BIN) $(BINDIR) cp -f $(CLIENT_MAN) $(MANDIR)/man1
-clean: - rm -f *.pyc - rm -rf dist - -test: - ./flashproxy-client-test - cd facilitator && ./facilitator-test - cd proxy && ./flashproxy-test.js - DISTNAME = flashproxy-client-$(VERSION) DISTDIR = dist/$(DISTNAME) dist: $(CLIENT_MAN) @@ -49,4 +40,13 @@ sign: dist/$(DISTNAME).zip cd dist && gpg --sign --detach-sign --armor $(DISTNAME).zip cd dist && gpg --verify $(DISTNAME).zip.asc $(DISTNAME).zip
-.PHONY: all install clean test dist sign +clean: + rm -f *.pyc + rm -rf dist + +test: + ./flashproxy-client-test + cd facilitator && ./facilitator-test + cd proxy && ./flashproxy-test.js + +.PHONY: all install dist sign clean test
tor-commits@lists.torproject.org