aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
Diffstat (limited to 'bldit.lua')
-rw-r--r--bldit.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/bldit.lua b/bldit.lua
index 4a4ea1d..6d624c3 100644
--- a/bldit.lua
+++ b/bldit.lua
@@ -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
}
}