aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/build.lua
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-21 20:58:41 +1000
committerDavid Walter Seikel2014-04-21 20:58:41 +1000
commitb878089e02b4631d6fcdd951e3b0829272eb2ec5 (patch)
tree5988cf96118ace3f1964f1433fceb6ce8272b59a /LuaSL/build.lua
parentLuaSL gets a test.sh just like the rest. (diff)
downloadSledjHamr-b878089e02b4631d6fcdd951e3b0829272eb2ec5.zip
SledjHamr-b878089e02b4631d6fcdd951e3b0829272eb2ec5.tar.gz
SledjHamr-b878089e02b4631d6fcdd951e3b0829272eb2ec5.tar.bz2
SledjHamr-b878089e02b4631d6fcdd951e3b0829272eb2ec5.tar.xz
Move the LuaSL.edj to the shared images directory.
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 c74cad6..e69a0b9 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', '../*.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', '../../images/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 ../LuaSL.edj') 23runCommand('edje_cc', dir, 'edje_cc ' .. EDJE_FLAGS .. ' LuaSL.edc ../../images/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'})