blob: 29347fa4f6d84227abe7e1621c7d3da51a6a7ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
bldit_version = "0.0.0"
package_version = "0.0.0"
targets = {
default = {
build = function(name)
os.execute("make")
end,
install = function(prefix)
os.execute("make install")
end,
}
}
|