Built a make bootstrap that runs either make or ninja depending on which is
installed.
This commit is contained in:
@@ -146,7 +146,10 @@ end
|
||||
local function abspath(collection)
|
||||
return dotocollection(collection,
|
||||
function(filename)
|
||||
return concatpath(posix.getcwd(), filename)
|
||||
if not filename:find("^[/$]") then
|
||||
filename = concatpath(posix.getcwd(), filename)
|
||||
end
|
||||
return filename
|
||||
end
|
||||
)
|
||||
end
|
||||
|
||||
2
first/build.ninja
Normal file
2
first/build.ninja
Normal file
@@ -0,0 +1,2 @@
|
||||
subninja .obj/rules.ninja
|
||||
|
||||
Reference in New Issue
Block a user