d34b661b10
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
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
|