mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
18 lines
212 B
Makefile
18 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
|