aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
Diffstat (limited to 'bldit.lua')
-rw-r--r--bldit.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/bldit.lua b/bldit.lua
index 6d624c3..bb9b12e 100644
--- a/bldit.lua
+++ b/bldit.lua
@@ -5,14 +5,14 @@ global_dependencies = {}
targets = {
default = {
- dependencies = {}
- compile = function(name)
+ dependencies = {},
+ build = function(name)
os.execute("make")
- end
- pre_install = function() end
+ end,
+ pre_install = function() end,
install = function(prefix)
os.execute("make install")
- end
- post_install = function() end
+ end,
+ post_install = function() end,
}
}