summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-24 16:01:50 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-24 16:01:50 +0200
commit971b88062352454ac93304246eec2e0f10d911a9 (patch)
treeaeb0422cd93e77f755fad0a4a624e10d3c67ff71
parentupdate todo (diff)
downloadblueshift-971b88062352454ac93304246eec2e0f10d911a9.tar.gz
blueshift-971b88062352454ac93304246eec2e0f10d911a9.tar.bz2
blueshift-971b88062352454ac93304246eec2e0f10d911a9.tar.xz
fix makefile error
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d717615..c6a29e3 100644
--- a/Makefile
+++ b/Makefile
@@ -177,12 +177,12 @@ obj/%.c: src/%.pyx
# Build rules for Python source files
bin/blueshift: obj/blueshift.zip
+ @mkdir -p bin
echo '#!$(SHEBANG)' > $@
cat $< >> $@
chmod a+x $@
obj/blueshift.zip: $(foreach F,$(PYFILES),obj/$(F))
- @mkdir -p bin
cd obj && zip ../$@ $(foreach F,$(PYFILES),$(F))
obj/%.py: src/%.py