8c8f291a07
Nothing uses the tables in tge.s, after I changed the ncg table. There are no *.e files in libem, so don't try to build them.
19 lines
236 B
Lua
19 lines
236 B
Lua
for _, plat in ipairs(vars.plats) do
|
|
acklibrary {
|
|
name = "headers_"..plat,
|
|
}
|
|
|
|
acklibrary {
|
|
name = "lib_"..plat,
|
|
srcs = {
|
|
"./*.s",
|
|
},
|
|
vars = { plat = plat },
|
|
deps = {
|
|
"h+emheaders",
|
|
"+headers_"..plat,
|
|
}
|
|
}
|
|
end
|
|
|