commit dc85b06b491fc17a838436b38556e3768dcebffb Author: David Fifield david@bamsoftware.com Date: Mon Nov 12 20:14:41 2012 -0800
Rearrange Makefile.
Put the man page target above the phony targets. --- Makefile | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile index 361fdf3..ce34812 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,11 @@ CLIENT_DIST_FILES = $(CLIENT_BIN) README LICENSE torrc all: :
+%.1: %.1.txt + rm -f $@ + a2x --no-xmllint --xsltproc-opts "--stringparam man.th.title.max.length 23" \ + -d manpage -f manpage $< + install: mkdir -p $(BINDIR) mkdir -p $(MANDIR)/man1 @@ -44,9 +49,4 @@ sign: dist/$(DISTNAME).zip cd dist && gpg --sign --detach-sign --armor $(DISTNAME).zip cd dist && gpg --verify $(DISTNAME).zip.asc $(DISTNAME).zip
-%.1: %.1.txt - rm -f $@ - a2x --no-xmllint --xsltproc-opts "--stringparam man.th.title.max.length 23" \ - -d manpage -f manpage $< - .PHONY: all install clean test dist sign