diff options
Diffstat (limited to 'bldit.lua')
| -rw-r--r-- | bldit.lua | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -6,9 +6,13 @@ global_dependencies = {} targets = { default = { dependencies = {} - compile = function(name) os.execute("make") end + compile = function(name) + os.execute("make") + end pre_install = function() end - install = function(prefix) os.execute("make install") end + install = function(prefix) + os.execute("make install") + end post_install = function() end } } |
