blob: 77b98c5d85682862934717e316de759d63c815ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
return function(s)
local function lib(name)
local source = Collect('src/common/' .. name .. '/*.c')
return Compile(s.common_settings, source)
end
return {
libc = lib('libc'),
libkogata = lib('libkogata')
}
end
|