diff options
author | David Walter Seikel | 2012-01-24 15:08:57 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-24 15:08:57 +1000 |
commit | 5f3188ff6b8c768f1a18e4d238dced35bc4ad811 (patch) | |
tree | 2e3f91a1a26c289d6e92aa91c176807363cddfec /LuaSL | |
parent | Rearrange the big test multitasking test script to be prettier. (diff) | |
download | SledjHamr-5f3188ff6b8c768f1a18e4d238dced35bc4ad811.zip SledjHamr-5f3188ff6b8c768f1a18e4d238dced35bc4ad811.tar.gz SledjHamr-5f3188ff6b8c768f1a18e4d238dced35bc4ad811.tar.bz2 SledjHamr-5f3188ff6b8c768f1a18e4d238dced35bc4ad811.tar.xz |
Update to latest lemon, and actually use our local copy.
Diffstat (limited to 'LuaSL')
-rwxr-xr-x | LuaSL/build.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/LuaSL/build.sh b/LuaSL/build.sh index 7455847..4f80cb4 100755 --- a/LuaSL/build.sh +++ b/LuaSL/build.sh | |||
@@ -54,24 +54,19 @@ LFLAGS="-d" | |||
54 | EDJE_FLAGS="-id images -fd fonts" | 54 | EDJE_FLAGS="-id images -fd fonts" |
55 | 55 | ||
56 | 56 | ||
57 | |||
58 | |||
59 | # Run lemon first, flex depends on it to define the symbol values. | 57 | # Run lemon first, flex depends on it to define the symbol values. |
60 | command="lemon -s LuaSL_lemon_yaccer.y" | 58 | command="../../libraries/lemon/lemon -s -T../../libraries/lemon/lempar.c LuaSL_lemon_yaccer.y" |
61 | echo $command | 59 | echo $command |
62 | $command | 60 | $command |
63 | 61 | ||
64 | |||
65 | command="flex -C --outfile=LuaSL_lexer.c --header-file=LuaSL_lexer.h LuaSL_lexer.l" | 62 | command="flex -C --outfile=LuaSL_lexer.c --header-file=LuaSL_lexer.h LuaSL_lexer.l" |
66 | echo $command | 63 | echo $command |
67 | $command | 64 | $command |
68 | 65 | ||
69 | |||
70 | command="edje_cc $EDJE_FLAGS LuaSL.edc ../LuaSL.edj" | 66 | command="edje_cc $EDJE_FLAGS LuaSL.edc ../LuaSL.edj" |
71 | echo $command | 67 | echo $command |
72 | $command | 68 | $command |
73 | 69 | ||
74 | |||
75 | names="LuaSL_main LuaSL_compile LuaSL_utilities LuaSL_lexer LuaSL_lemon_yaccer" | 70 | names="LuaSL_main LuaSL_compile LuaSL_utilities LuaSL_lexer LuaSL_lemon_yaccer" |
76 | objects="" | 71 | objects="" |
77 | for i in $names | 72 | for i in $names |