diff options
author | Ben Smith <binji@chromium.org> | 2015-12-24 15:47:49 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-12-24 15:47:49 -0800 |
commit | 973bec1d32a1292e59e723c9092b1270089c4307 (patch) | |
tree | e2e7bacd1bbbc0617d9ec4d7e9d561c26898377c /Makefile | |
parent | cbe74d8c554fbf81ef6330e36cee1e52f38b9475 (diff) | |
download | wabt-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |