summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-11-13 15:58:31 -0800
committerBen Smith <binji@chromium.org>2015-12-03 17:04:35 -0800
commitb80d5b6948ab7c1394d891fa91eeefd9b339fbf2 (patch)
tree068d2209642a1d2dedfa4b17d970df9cd193c307 /Makefile
parent00389e153c4532de0ad35df4afa0d48680b20df4 (diff)
downloadwabt-b80d5b6948ab7c1394d891fa91eeefd9b339fbf2.tar.gz
wabt-b80d5b6948ab7c1394d891fa91eeefd9b339fbf2.tar.bz2
wabt-b80d5b6948ab7c1394d891fa91eeefd9b339fbf2.zip
lexer using flex
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 96899eab..63fd92e8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
.SUFFIXES:
-ALL = sexpr-wasm
+ALL = sexpr-wasm lexer
EVERYHING = $(ALL) sexpr-wasm-asan sexpr-wasm-msan sexpr-wasm-lsan
CFLAGS = -Wall -Werror -g
DEPEND_FLAGS = -MMD -MP -MF $(patsubst %.o,%.d,$@)
@@ -23,6 +23,12 @@ everything: $(addprefix out/,$(EVERYHING))
out/:
mkdir $@
+src/wasm-lexer.c src/wasm-lexer.h: src/wasm-lexer.l
+ flex -o src/wasm-lexer.c --header-file=src/wasm-lexer.h $<
+
+out/lexer: src/wasm-lexer.c | out
+ $(CC) $(CFLAGS) -Wno-unused-function -Wno-return-type -o $@ $< -ll
+
$(OBJS): out/%.o: src/%.c | out
$(CC) $(CFLAGS) -c -o $@ $(DEPEND_FLAGS) $<
out/sexpr-wasm: $(OBJS) | out