25 lines
		
	
	
	
		
			375 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			375 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
include("plat/build.lua")
 | 
						|
 | 
						|
ackfile {
 | 
						|
	name = "boot",
 | 
						|
	srcs = { "./boot.s" },
 | 
						|
	vars = { plat = "linuxppc" }
 | 
						|
}
 | 
						|
 | 
						|
build_plat_libs {
 | 
						|
	name = "libs",
 | 
						|
	arch = "powerpc",
 | 
						|
	plat = "linuxppc",
 | 
						|
}
 | 
						|
 | 
						|
installable {
 | 
						|
	name = "pkg",
 | 
						|
	map = {
 | 
						|
		"+tools",
 | 
						|
		"+libs",
 | 
						|
		"./include+pkg",
 | 
						|
		["$(PLATIND)/linuxppc/boot.o"] = "+boot",
 | 
						|
        ["$(PLATIND)/linuxppc/libsys.a"] = "./libsys+lib",
 | 
						|
	}
 | 
						|
}
 | 
						|
 |