blob: 5d749b9c9553692e124f71ceb7cb98cf91023015 (
plain) (
tree)
|
|
return function(s, common)
local function lib(name)
local source = {Collect('src/lib/' .. name .. '/*.c'),
Collect('src/lib/' .. name .. '/*.s')}
return Compile(s.user_settings, source)
end
local libc = {lib('libc'), common.libc, common.libkogata}
return {
libc = libc,
libkogata = {lib('libkogata')},
liblua = {lib('lua')}
}
end
|