Telling osx386 and osxppc to build and run their own tools, not to reuse the tools from linux386 and linuxppc. This wastes time to build identical tools, but it removes some bogus dependencies. OS X tools had wrongly depended on Linux descr files and aelflod; now they don't. Discussion in https://github.com/davidgiven/ack/pull/23
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			422 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			422 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| include("plat/build.lua")
 | |
| 
 | |
| build_as {
 | |
| 	name = "as",
 | |
| 	arch = "powerpc",
 | |
| }
 | |
| 
 | |
| build_ncg {
 | |
| 	name = "ncg",
 | |
| 	arch = "powerpc",
 | |
| }
 | |
| 
 | |
| build_top {
 | |
| 	name = "top",
 | |
| 	arch = "powerpc",
 | |
| }
 | |
| 
 | |
| return installable {
 | |
| 	name = "tools",
 | |
| 	map = {
 | |
| 		["$(PLATDEP)/osxppc/as"] = "+as",
 | |
| 		["$(PLATDEP)/osxppc/ncg"] = "+ncg",
 | |
| 		["$(PLATDEP)/osxppc/top"] = "+top",
 | |
| 		["$(PLATIND)/descr/osxppc"] = "./descr",
 | |
| 		"plat/osx/cvmach+pkg",
 | |
| 		"util/opt+pkg",
 | |
| 	}
 | |
| }
 |