16 lines
		
	
	
		
			188 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			188 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROGS := tm-resched-dscr
 | 
						|
 | 
						|
all: $(PROGS)
 | 
						|
 | 
						|
$(PROGS): ../harness.c
 | 
						|
 | 
						|
run_tests: all
 | 
						|
	@-for PROG in $(PROGS); do \
 | 
						|
		./$$PROG; \
 | 
						|
	done;
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f $(PROGS) *.o
 | 
						|
 | 
						|
.PHONY: all run_tests clean
 |