diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-24 16:01:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-24 16:01:50 +0200 |
commit | 971b88062352454ac93304246eec2e0f10d911a9 (patch) | |
tree | aeb0422cd93e77f755fad0a4a624e10d3c67ff71 /Makefile | |
parent | update todo (diff) | |
download | blueshift-971b88062352454ac93304246eec2e0f10d911a9.tar.gz blueshift-971b88062352454ac93304246eec2e0f10d911a9.tar.bz2 blueshift-971b88062352454ac93304246eec2e0f10d911a9.tar.xz |
fix makefile error
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |