Before this commit, the headers in plat/osx/include got installed twice into PLATIND/osx386/include and PLATIND/osxppc/include. This commit installs them once into PLATIND/osx/include and changes both descr files to find them. Several rules in lang/ depend on plat/osx386/include+headers or plat/osxppc/include+headers. They each become a simplerule that depends on plat/osx/include+headers.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| include("plat/build.lua")
 | |
| 
 | |
| ackfile {
 | |
| 	name = "boot",
 | |
| 	srcs = { "./boot.s" },
 | |
| 	vars = { plat = "osxppc" }
 | |
| }
 | |
| 
 | |
| build_plat_libs {
 | |
| 	name = "libs",
 | |
| 	arch = "powerpc",
 | |
| 	plat = "osxppc",
 | |
| }
 | |
| 
 | |
| installable {
 | |
| 	name = "pkg",
 | |
| 	map = {
 | |
| 		"+tools",
 | |
| 		"+libs",
 | |
| 		"plat/osx/include+pkg",
 | |
| 		["$(PLATIND)/osxppc/boot.o"] = "+boot",
 | |
| 		["$(PLATIND)/osxppc/libsys.a"] = "./libsys+lib",
 | |
| 	}
 | |
| }
 |