0d0495e818
Before this commit, the headers in plat/osx/include got installed twice into PLATIND/osx386/include and PLATIND/osxppc/include. This commit installs them once into PLATIND/osx/include and changes both descr files to find them. Several rules in lang/ depend on plat/osx386/include+headers or plat/osxppc/include+headers. They each become a simplerule that depends on plat/osx/include+headers.
25 lines
364 B
Lua
25 lines
364 B
Lua
include("plat/build.lua")
|
|
|
|
ackfile {
|
|
name = "boot",
|
|
srcs = { "./boot.s" },
|
|
vars = { plat = "osx386" }
|
|
}
|
|
|
|
build_plat_libs {
|
|
name = "libs",
|
|
arch = "i386",
|
|
plat = "osx386",
|
|
}
|
|
|
|
installable {
|
|
name = "pkg",
|
|
map = {
|
|
"+tools",
|
|
"+libs",
|
|
"plat/osx/include+pkg",
|
|
["$(PLATIND)/osx386/boot.o"] = "+boot",
|
|
["$(PLATIND)/osx386/libsys.a"] = "./libsys+lib",
|
|
}
|
|
}
|