mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			262 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			262 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| definerule("test",
 | |
| 	{
 | |
| 		srcs = { type="targets", default={} },
 | |
| 	},
 | |
| 	function (e)
 | |
| 		if vars.TESTS == "yes" then
 | |
| 			normalrule {
 | |
| 				name = e.name,
 | |
| 				ins = e.srcs,
 | |
| 				outleaves = { "log.txt" },
 | |
| 				commands = {
 | |
| 					"%{ins} > %{outs}",
 | |
| 				}
 | |
| 			}
 | |
| 		end
 | |
| 	end
 | |
| )
 | |
| 
 |