2016-07-26 21:35:30 +00:00
|
|
|
include("mach/proto/as/build.lua")
|
|
|
|
include("mach/proto/ncg/build.lua")
|
2016-10-16 22:06:06 +00:00
|
|
|
include("mach/proto/mcg/build.lua")
|
2016-08-13 23:39:40 +00:00
|
|
|
include("mach/proto/top/build.lua")
|
2016-07-26 21:35:30 +00:00
|
|
|
|
2016-07-28 22:22:49 +00:00
|
|
|
definerule("ackfile",
|
|
|
|
{
|
|
|
|
srcs = { type="targets" },
|
|
|
|
deps = { type="targets", default={} },
|
|
|
|
},
|
|
|
|
function (e)
|
|
|
|
local plat = e.vars.plat
|
|
|
|
|
|
|
|
return cfile {
|
|
|
|
name = e.name,
|
|
|
|
srcs = e.srcs,
|
|
|
|
deps = {
|
2016-12-29 17:11:07 +00:00
|
|
|
"lang/b/compiler+pkg",
|
|
|
|
"lang/basic/src+pkg",
|
2016-08-11 22:19:51 +00:00
|
|
|
"lang/cem/cemcom.ansi+pkg",
|
2016-08-07 19:56:53 +00:00
|
|
|
"lang/cem/cpp.ansi+pkg",
|
2016-08-13 10:43:44 +00:00
|
|
|
"lang/m2/comp+pkg",
|
2016-08-13 11:03:06 +00:00
|
|
|
"lang/pc/comp+pkg",
|
2016-07-28 22:22:49 +00:00
|
|
|
"plat/"..plat.."+tools",
|
|
|
|
"util/ack+pkg",
|
2016-08-21 20:01:19 +00:00
|
|
|
"util/ego+pkg",
|
2016-08-07 19:56:53 +00:00
|
|
|
"util/misc+pkg",
|
2016-08-04 21:51:19 +00:00
|
|
|
e.deps
|
2016-07-28 22:22:49 +00:00
|
|
|
},
|
|
|
|
commands = {
|
|
|
|
"ACKDIR=$(INSDIR) $(INSDIR)/bin/ack -m%{plat} -c -o %{outs} %{ins} %{hdrpaths} %{ackcflags}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|
|
|
|
|
2016-07-29 22:39:22 +00:00
|
|
|
definerule("acklibrary",
|
|
|
|
{
|
|
|
|
srcs = { type="targets", default={} },
|
|
|
|
hdrs = { type="targets", default={} },
|
|
|
|
deps = { type="targets", default={} },
|
|
|
|
},
|
|
|
|
function (e)
|
|
|
|
return clibrary {
|
|
|
|
name = e.name,
|
|
|
|
srcs = e.srcs,
|
|
|
|
hdrs = e.hdrs,
|
|
|
|
deps = {
|
|
|
|
"util/arch+pkg",
|
2016-08-04 21:51:19 +00:00
|
|
|
e.deps
|
2016-07-29 22:39:22 +00:00
|
|
|
},
|
|
|
|
_cfile = ackfile,
|
|
|
|
commands = {
|
2016-08-04 21:51:19 +00:00
|
|
|
"rm -f %{outs[1]}",
|
2016-08-07 19:56:53 +00:00
|
|
|
"ACKDIR=$(INSDIR) $(INSDIR)/bin/aal qc %{outs[1]} %{ins}"
|
2016-07-29 22:39:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|
2016-07-28 22:22:49 +00:00
|
|
|
|
2016-08-20 12:05:24 +00:00
|
|
|
definerule("ackprogram",
|
|
|
|
{
|
|
|
|
srcs = { type="targets", default={} },
|
|
|
|
deps = { type="targets", default={} },
|
|
|
|
},
|
|
|
|
function (e)
|
2016-11-20 17:57:44 +00:00
|
|
|
-- This bit is a hack. We *don't* want to link the language libraries here,
|
|
|
|
-- because the ack driver is going to pick the appropriate library itself and
|
|
|
|
-- we don't want more than one. But we still need to depend on them, so we use
|
|
|
|
-- a nasty hack.
|
|
|
|
|
|
|
|
local platstamp = normalrule {
|
|
|
|
name = e.name.."/platstamp",
|
|
|
|
ins = { "plat/"..e.vars.plat.."+pkg" },
|
|
|
|
outleaves = { "stamp" },
|
|
|
|
commands = { "touch %{outs}" }
|
|
|
|
}
|
|
|
|
|
2016-08-20 12:05:24 +00:00
|
|
|
return cprogram {
|
|
|
|
name = e.name,
|
|
|
|
srcs = e.srcs,
|
|
|
|
deps = {
|
2016-11-20 17:57:44 +00:00
|
|
|
platstamp,
|
2016-08-20 12:05:24 +00:00
|
|
|
"util/ack+pkg",
|
|
|
|
"util/led+pkg",
|
|
|
|
e.deps
|
|
|
|
},
|
|
|
|
_clibrary = acklibrary,
|
|
|
|
commands = {
|
|
|
|
"ACKDIR=$(INSDIR) $(INSDIR)/bin/ack -m%{plat} -.%{lang} -o %{outs} %{ins}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|
|
|
|
|
2016-07-29 22:39:22 +00:00
|
|
|
definerule("build_plat_libs",
|
|
|
|
{
|
|
|
|
arch = { type="string" },
|
|
|
|
plat = { type="string" },
|
|
|
|
},
|
|
|
|
function(e)
|
|
|
|
return installable {
|
|
|
|
name = e.name,
|
|
|
|
map = {
|
2016-12-29 17:11:07 +00:00
|
|
|
"lang/b/lib+pkg_"..e.plat,
|
2016-08-11 22:24:40 +00:00
|
|
|
"lang/basic/lib+pkg_"..e.plat,
|
2016-08-14 08:37:55 +00:00
|
|
|
"lang/cem/libcc.ansi+pkg_"..e.plat,
|
|
|
|
"lang/m2/libm2+pkg_"..e.plat,
|
|
|
|
"lang/pc/libpc+pkg_"..e.plat,
|
2016-11-27 21:05:15 +00:00
|
|
|
"lang/b/lib+pkg_"..e.plat,
|
2016-08-07 19:56:53 +00:00
|
|
|
["$(PLATIND)/"..e.plat.."/libem.a"] = "mach/"..e.arch.."/libem+lib_"..e.plat,
|
2016-08-11 22:24:40 +00:00
|
|
|
["$(PLATIND)/"..e.plat.."/libend.a"] = "mach/"..e.arch.."/libend+lib_"..e.plat,
|
2016-07-29 22:39:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|
|
|
|
|