From 8b6c0f0960aaf4b886d0004105df886e3d3c22e7 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Fri, 6 Jan 2012 14:06:47 +1000 Subject: Use the LSL_ enums for parser tokens. Some clean up and debugging. OK, so the parsers prefer to make them defines instead of enums. sigh --- LuaSL/build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'LuaSL/build.sh') diff --git a/LuaSL/build.sh b/LuaSL/build.sh index bf82075..9e5e2b7 100755 --- a/LuaSL/build.sh +++ b/LuaSL/build.sh @@ -51,7 +51,7 @@ names="LuaSL_main LuaSL_compile LuaSL_utilities" EDJE_FLAGS="-id images -fd fonts" -rm -f ../LuaSL ../LuaSL_parser *.o *.edj LuaSL_lexer.h LuaSL_lexer.c LuaSL_yaccer.h LuaSL_yaccer.tab.c +rm -f ../LuaSL ../LuaSL_parser ../*.o *.output ../*.edj LuaSL_lexer.h LuaSL_lexer.c LuaSL_yaccer.h LuaSL_yaccer.tab.c command="edje_cc $EDJE_FLAGS LuaSL.edc ../LuaSL.edj" echo $command $command @@ -77,7 +77,8 @@ command="flex --outfile=LuaSL_lexer.c --header-file=LuaSL_lexer.h LuaSL_lexer.l" echo $command $command -command="btyacc -d -b LuaSL_yaccer -S btyacc-c.ske LuaSL_yaccer.y" +# Should add -t as well for debugging, but it causes errors. +command="btyacc -d -v -b LuaSL_yaccer -S btyacc-c.ske LuaSL_yaccer.y" echo $command $command -- cgit v1.1