aboutsummaryrefslogtreecommitdiff
path: root/src/sysbin/bam.lua
blob: 7c2351bc9b9c05747e3b2b725d50bec2e96a8e08 (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
25
26
27
28
return function(s, lib)
	local function sysbin_settings(name)
		local s = TableDeepCopy(s.user_settings)
		s.link.flags:Add("-T src/lib/linker.ld")
		return s
	end

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

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

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

	return {
		sysbin_exe('init', {lib.libkogata}),
		sysbin_exe('giosrv', {lib.libkogata}),
		sysbin_exe('login', {lib.libkogata}),
		sysbin_exe('terminal', {lib.libkogata}),
		sysbin_exe('shell', {lib.libkogata}),

		sysbin_exe('lua', {lib.liblua}),
		-- sysbin_exe('luac', {liblua}),
		sysbin_exe('lx', {lib.liblua}),
	}
end