aboutsummaryrefslogblamecommitdiff
path: root/src/sysbin/bam.lua
blob: c05d8e6e41b8c63fc012ee3fb519c12fdf779cd2 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                        
 

                                               
 

                                                                    
 

                                                                        
 





                                                        


                                                

         
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}),
	}
end