aboutsummaryrefslogtreecommitdiff
path: root/src/sysbin/bam.lua
blob: d223bebc1064d943812bb3479feb013372b01bd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local function sysbin_settings(name)
	local s = TableDeepCopy(user_settings)
	s.link.flags:Add("-T src/sysbin/linker.ld",
					 "-Xlinker -Map=build/sysbin/" .. name .. ".map")
	return s
end

local function sysbin_exe(name, moredeps)
	local s = sysbin_settings(name)

	local src = Collect('src/sysbin/' .. name .. '/*.c')
	local obj = Compile(s, src)

	return Link(s, 'sysbin/' .. name .. ".bin", {obj, libkogata, moredeps})
end

sysbin = {
	sysbin_exe('init'),
	sysbin_exe('giosrv'),
	sysbin_exe('login'),
	sysbin_exe('terminal'),
	--sysbin_exe('shell', {liblua, liblualib}),
	sysbin_exe('shell'),
}