19 lines
		
	
	
		
			212 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			212 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
noarg:
 | 
						|
	$(MAKE) -C ../
 | 
						|
 | 
						|
PROGS := hugetlb_vs_thp_test
 | 
						|
 | 
						|
all: $(PROGS)
 | 
						|
 | 
						|
$(PROGS): ../harness.c
 | 
						|
 | 
						|
run_tests: all
 | 
						|
	@-for PROG in $(PROGS); do \
 | 
						|
		./$$PROG; \
 | 
						|
	done;
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f $(PROGS)
 | 
						|
 | 
						|
.PHONY: all run_tests clean
 |