summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-12-24 15:47:49 -0800
committerBen Smith <binji@chromium.org>2015-12-24 15:47:49 -0800
commit973bec1d32a1292e59e723c9092b1270089c4307 (patch)
treee2e7bacd1bbbc0617d9ec4d7e9d561c26898377c /Makefile
parentcbe74d8c554fbf81ef6330e36cee1e52f38b9475 (diff)
downloadwabt-973bec1d32a1292e59e723c9092b1270089c4307.tar.gz
wabt-973bec1d32a1292e59e723c9092b1270089c4307.tar.bz2
wabt-973bec1d32a1292e59e723c9092b1270089c4307.zip
remove trailing slash from "out" in Makefile
Perhaps this will fix #15. I haven't seen it fail, but this seems to be the "official" way to conditionally create a directory in a Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1d46f875..4a6e55d5 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ all: $(addprefix out/,$(ALL))
.PHONY: everything
everything: $(addprefix out/,$(EVERYHING))
-out/:
+out:
mkdir $@
src/wasm-lexer.c src/wasm-lexer.h: src/wasm-lexer.l