diff options
author | Ben Smith <binji@chromium.org> | 2015-11-13 15:58:31 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-12-03 17:04:35 -0800 |
commit | b80d5b6948ab7c1394d891fa91eeefd9b339fbf2 (patch) | |
tree | 068d2209642a1d2dedfa4b17d970df9cd193c307 /Makefile | |
parent | 00389e153c4532de0ad35df4afa0d48680b20df4 (diff) | |
download | wabt-b80d5b6948ab7c1394d891fa91eeefd9b339fbf2.tar.gz wabt-b80d5b6948ab7c1394d891fa91eeefd9b339fbf2.tar.bz2 wabt-b80d5b6948ab7c1394d891fa91eeefd9b339fbf2.zip |
lexer using flex
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |