Add files which got missed in the initial build pass.

This commit is contained in:
David Given 2016-08-20 14:04:17 +02:00
parent edee22510b
commit 856eb120b3
2 changed files with 8 additions and 1 deletions

View file

@ -38,6 +38,7 @@ for _, plat in ipairs(vars.plats) do
"./locale/*.c",
"./malloc/*.c",
"./math/*.c",
"./math/*.e",
"./misc/environ.c", -- don't build everything here as it's all obsolete
"./setjmp/*.c",
"./setjmp/*.e",

View file

@ -1,8 +1,14 @@
for _, plat in ipairs(vars.plats) do
acklibrary {
name = "lib_"..plat,
srcs = { "./*.s" },
srcs = {
"./*.s",
"./*.c"
},
vars = { plat = plat },
deps = {
"h+emheaders"
}
}
end