mirror of
				https://github.com/YosysHQ/sby.git
				synced 2025-11-04 06:39:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			147 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			147 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SH_FILES=$(wildcard *.sh)
 | 
						|
SH_TESTS=$(addprefix test_,$(SH_FILES:.sh=))
 | 
						|
 | 
						|
test: $(SH_TESTS)
 | 
						|
 | 
						|
test_%: %.sh FORCE
 | 
						|
	bash $<
 | 
						|
 | 
						|
FORCE:
 | 
						|
 | 
						|
.PHONY: test FORCE
 |