aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/build.lua
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-22 13:59:32 +1000
committerDavid Walter Seikel2014-04-22 13:59:32 +1000
commit5b6db32b857c6c55ab455af82a9043e157e08fe8 (patch)
tree7ad87e1a5488b739648d60d477d6d3f0e4b05b80 /LuaSL/build.lua
parentWe don't need the testlua directory any more. (diff)
downloadSledjHamr-5b6db32b857c6c55ab455af82a9043e157e08fe8.zip
SledjHamr-5b6db32b857c6c55ab455af82a9043e157e08fe8.tar.gz
SledjHamr-5b6db32b857c6c55ab455af82a9043e157e08fe8.tar.bz2
SledjHamr-5b6db32b857c6c55ab455af82a9043e157e08fe8.tar.xz
Moved images to media, much better idea.
Diffstat (limited to 'LuaSL/build.lua')
-rwxr-xr-xLuaSL/build.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/build.lua b/LuaSL/build.lua
index e69a0b9..f626fb0 100755
--- a/LuaSL/build.lua
+++ b/LuaSL/build.lua
@@ -15,11 +15,11 @@ end
15 15
16dir = dir .. '/src' 16dir = dir .. '/src'
17 17
18removeFiles(dir, {'../LuaSL', '*.o', '*.output', '*.backup', '../../images/LuaSL.edj', 'LuaSL_lexer.h', 'LuaSL_lexer.c', 'LuaSL_lemon_yaccer.h', 'LuaSL_lemon_yaccer.c', 'LuaSL_lemon_yaccer.out'}) 18removeFiles(dir, {'../LuaSL', '*.o', '*.output', '*.backup', '../../media/LuaSL.edj', 'LuaSL_lexer.h', 'LuaSL_lexer.c', 'LuaSL_lemon_yaccer.h', 'LuaSL_lemon_yaccer.c', 'LuaSL_lemon_yaccer.out'})
19 19
20-- Run lemon first, flex depends on it to define the symbol values. 20-- Run lemon first, flex depends on it to define the symbol values.
21runCommand('lemon', dir, '../../libraries/lemon/lemon -s -T../../libraries/lemon/lempar.c LuaSL_lemon_yaccer.y') 21runCommand('lemon', dir, '../../libraries/lemon/lemon -s -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')
23runCommand('edje_cc', dir, 'edje_cc ' .. EDJE_FLAGS .. ' LuaSL.edc ../../images/LuaSL.edj') 23runCommand('edje_cc', dir, 'edje_cc ' .. EDJE_FLAGS .. ' LuaSL.edc ../../media/LuaSL.edj')
24compileFiles('../LuaSL', dir, {'LuaSL_main', 'LuaSL_compile', 'LuaSL_threads', 'LuaSL_utilities', 'LuaSL_lexer', 'LuaSL_lemon_yaccer'}) 24compileFiles('../LuaSL', dir, {'LuaSL_main', 'LuaSL_compile', 'LuaSL_threads', 'LuaSL_utilities', 'LuaSL_lexer', 'LuaSL_lemon_yaccer'})
25compileFiles('../LuaSL_test', dir, {'LuaSL_test', 'LuaSL_utilities'}) 25compileFiles('../LuaSL_test', dir, {'LuaSL_test', 'LuaSL_utilities'})