aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/build.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-06 14:06:47 +1000
committerDavid Walter Seikel2012-01-06 14:06:47 +1000
commit8b6c0f0960aaf4b886d0004105df886e3d3c22e7 (patch)
treefc3299ba3694c8cf3b164cc3c4bedc649178720a /LuaSL/build.sh
parentAdd more LSL parsing structure. (diff)
downloadSledjHamr-8b6c0f0960aaf4b886d0004105df886e3d3c22e7.zip
SledjHamr-8b6c0f0960aaf4b886d0004105df886e3d3c22e7.tar.gz
SledjHamr-8b6c0f0960aaf4b886d0004105df886e3d3c22e7.tar.bz2
SledjHamr-8b6c0f0960aaf4b886d0004105df886e3d3c22e7.tar.xz
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
Diffstat (limited to 'LuaSL/build.sh')
-rwxr-xr-xLuaSL/build.sh5
1 files changed, 3 insertions, 2 deletions
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"
51 51
52EDJE_FLAGS="-id images -fd fonts" 52EDJE_FLAGS="-id images -fd fonts"
53 53
54rm -f ../LuaSL ../LuaSL_parser *.o *.edj LuaSL_lexer.h LuaSL_lexer.c LuaSL_yaccer.h LuaSL_yaccer.tab.c 54rm -f ../LuaSL ../LuaSL_parser ../*.o *.output ../*.edj LuaSL_lexer.h LuaSL_lexer.c LuaSL_yaccer.h LuaSL_yaccer.tab.c
55command="edje_cc $EDJE_FLAGS LuaSL.edc ../LuaSL.edj" 55command="edje_cc $EDJE_FLAGS LuaSL.edc ../LuaSL.edj"
56echo $command 56echo $command
57$command 57$command
@@ -77,7 +77,8 @@ command="flex --outfile=LuaSL_lexer.c --header-file=LuaSL_lexer.h LuaSL_lexer.l"
77echo $command 77echo $command
78$command 78$command
79 79
80command="btyacc -d -b LuaSL_yaccer -S btyacc-c.ske LuaSL_yaccer.y" 80# Should add -t as well for debugging, but it causes errors.
81command="btyacc -d -v -b LuaSL_yaccer -S btyacc-c.ske LuaSL_yaccer.y"
81echo $command 82echo $command
82$command 83$command
83 84