aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-08-23 05:16:57 +0000
committerlloyd <[email protected]>2006-08-23 05:16:57 +0000
commit82ce25b181af3dfcc298f12d4b7328bd049089de (patch)
tree960779bcc18541a532a6ae719477cb7a05968fd0
parentb35edb5db557517df9bcc07036c8ed2bac783fac (diff)
Remove dirs from the dependencies, as it was causing things to be rebuilt
needlessly.
-rw-r--r--misc/python/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/python/Makefile b/misc/python/Makefile
index d37e646e9..c85de6c3a 100644
--- a/misc/python/Makefile
+++ b/misc/python/Makefile
@@ -16,13 +16,13 @@ WRAP_OBJS = $(patsubst src/%.cpp,build/%.o,$(WRAP_SRC))
all: botan/_botan.so
-build/%.o: src/%.cpp dirs
+build/%.o: src/%.cpp
$(CXX) $(SHARED_CFLAGS) $(WRAPPER_CFLAGS) -c $< -o $@
botan/_botan.so: $(WRAP_OBJS)
$(CXX) -shared -o $@ $(shell botan-config --libs) -L$(PYTHON_ROOT) $(WRAP_OBJS) -Lbuild/ -lboost_python -Wl,-rpath-link,. -Wl,-soname,$@
-dirs:
+dirs: build/ botan/
mkdir -p build botan
clean: