mirror of
				https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
				synced 2025-10-31 08:08:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| CFLAGS += -I$(CURDIR)
 | |
| 
 | |
| PROGS := load_unaligned_zeropad
 | |
| 
 | |
| 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
 | 
