aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-09-14 03:17:48 +1000
committerDavid Walter Seikel2014-09-14 03:17:48 +1000
commita2c0f6189f844384284eff42bef4250682ca8db2 (patch)
treedb809803fcdfbe0efbf4480ec0bb4d5b2214c979
parentAdd a README for lemon, that points to the site it comes from. (diff)
downloadSledjHamr-a2c0f6189f844384284eff42bef4250682ca8db2.zip
SledjHamr-a2c0f6189f844384284eff42bef4250682ca8db2.tar.gz
SledjHamr-a2c0f6189f844384284eff42bef4250682ca8db2.tar.bz2
SledjHamr-a2c0f6189f844384284eff42bef4250682ca8db2.tar.xz
Don't generate the lemon .out file, we are not using it.
-rwxr-xr-xsrc/LuaSL/build.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LuaSL/build.lua b/src/LuaSL/build.lua
index 8a917c0..df002f6 100755
--- a/src/LuaSL/build.lua
+++ b/src/LuaSL/build.lua
@@ -18,6 +18,6 @@ removeFiles(dir, {'*.output', '*.backup', 'LuaSL_lexer.h', 'LuaSL_lexer.c', 'Lua
18 18
19-- Build and run lemon first, flex depends on it to define the symbol values. 19-- Build and run lemon first, flex depends on it to define the symbol values.
20compileFiles('lemon', dir .. '/../../libraries/lemon', {'lemon'}, '') 20compileFiles('lemon', dir .. '/../../libraries/lemon', {'lemon'}, '')
21runCommand('lemon', dir, '../../libraries/lemon/lemon -s -T../../libraries/lemon/lempar.c LuaSL_lemon_yaccer.y') 21runCommand('lemon', dir, '../../libraries/lemon/lemon -qs -T../../libraries/lemon/lempar.c LuaSL_lemon_yaccer.y')
22runCommand('flex', dir, 'flex -C --outfile=LuaSL_lexer.c --header-file=LuaSL_lexer.h LuaSL_lexer.l') 22runCommand('flex', dir, 'flex -C --outfile=LuaSL_lexer.c --header-file=LuaSL_lexer.h LuaSL_lexer.l')
23compileFiles('../../LuaSL', dir, {'LuaSL_main', 'LuaSL_compile', 'LuaSL_lexer', 'LuaSL_lemon_yaccer'}, '') 23compileFiles('../../LuaSL', dir, {'LuaSL_main', 'LuaSL_compile', 'LuaSL_lexer', 'LuaSL_lemon_yaccer'}, '')