aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2010-10-21 23:04:52 -0400
committerChris Ball <cjb@laptop.org>2010-10-21 23:04:52 -0400
commitde0c34c809144ed045628f241ec57e7007bc5f06 (patch)
tree51f721c0b31ff8c18285a0fcb59849ccfdf7c911 /Makefile
parent59d39826cc04b30520171f56df81067ff582aa2e (diff)
parentc3d3f531440102986c83bf6611f45e81c9e636b3 (diff)
downloadbugseverywhere-de0c34c809144ed045628f241ec57e7007bc5f06.tar.gz
Merge branch 'master' of http://www.physics.drexel.edu/~wking/code/git/be
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c7203df..120963b 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,8 @@ DOC_DIR := doc
MAN_DIR := ${DOC_DIR}/man
MANPAGES = be.1
-GENERATED_FILES := build libbe/_version.py
+LIBBE_VERSION := libbe/_version.py
+GENERATED_FILES := build $(LIBBE_VERSION)
MANPAGE_FILES = $(patsubst %,${MAN_DIR}/%,${MANPAGES})
GENERATED_FILES += ${MANPAGE_FILES}
@@ -53,7 +54,7 @@ all: build
.PHONY: build
-build: libbe/_version.py
+build: $(LIBBE_VERSION)
python setup.py build
.PHONY: doc