Merge branch 'next' into for-linus
[firefly-linux-kernel-4.4.55.git] / tools / testing / selftests / powerpc / primitives / Makefile
1 CFLAGS += -I$(CURDIR)
2
3 PROGS := load_unaligned_zeropad
4
5 all: $(PROGS)
6
7 $(PROGS): ../harness.c
8
9 run_tests: all
10         @-for PROG in $(PROGS); do \
11                 ./$$PROG; \
12         done;
13
14 clean:
15         rm -f $(PROGS) *.o
16
17 .PHONY: all run_tests clean