diff options
author | David Walter Seikel | 2012-01-07 01:42:00 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-07 01:42:00 +1000 |
commit | 9104f2419efb298f066652ff0841b379b9f0f619 (patch) | |
tree | 7962c219f2bff927da02a75747885dd87f00899e /LuaSL | |
parent | Convert the parser from dealing with just expressions, to dealing with the en... (diff) | |
download | SledjHamr-9104f2419efb298f066652ff0841b379b9f0f619.zip SledjHamr-9104f2419efb298f066652ff0841b379b9f0f619.tar.gz SledjHamr-9104f2419efb298f066652ff0841b379b9f0f619.tar.bz2 SledjHamr-9104f2419efb298f066652ff0841b379b9f0f619.tar.xz |
No need to actually compile the LSL flex and yacc sources, they are just reference now. I'll be writing me own.
Diffstat (limited to 'LuaSL')
-rwxr-xr-x | LuaSL/build.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/LuaSL/build.sh b/LuaSL/build.sh index b118f5a..7c8ea25 100755 --- a/LuaSL/build.sh +++ b/LuaSL/build.sh | |||
@@ -97,13 +97,3 @@ command="gcc $CFLAGS -o ../LuaSL_parser $objects $LDFLAGS $libs" | |||
97 | echo $command | 97 | echo $command |
98 | $command | 98 | $command |
99 | 99 | ||
100 | |||
101 | command="flex --outfile=LuaSL_LSL_lexer.c --header-file=LuaSL_LSL_lexer.h LuaSL_LSL_lexer.l" | ||
102 | echo $command | ||
103 | $command | ||
104 | |||
105 | command="btyacc -d -b LuaSL_LSL_yaccer -S btyacc-c.ske LuaSL_LSL_yaccer.y" | ||
106 | echo $command | ||
107 | $command | ||
108 | |||
109 | |||