6cbea83f7f
Telling osx386 and osxppc to build and run their own tools, not to reuse the tools from linux386 and linuxppc. This wastes time to build identical tools, but it removes some bogus dependencies. OS X tools had wrongly depended on Linux descr files and aelflod; now they don't. Discussion in https://github.com/davidgiven/ack/pull/23
23 lines
329 B
Lua
23 lines
329 B
Lua
include("plat/build.lua")
|
|
|
|
build_as {
|
|
name = "as",
|
|
arch = "i386",
|
|
}
|
|
|
|
build_ncg {
|
|
name = "ncg",
|
|
arch = "i386",
|
|
}
|
|
|
|
return installable {
|
|
name = "tools",
|
|
map = {
|
|
["$(PLATDEP)/osx386/as"] = "+as",
|
|
["$(PLATDEP)/osx386/ncg"] = "+ncg",
|
|
["$(PLATIND)/descr/osx386"] = "./descr",
|
|
"plat/osx/cvmach+pkg",
|
|
"util/opt+pkg",
|
|
}
|
|
}
|