mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
15 lines
188 B
Makefile
15 lines
188 B
Makefile
PROGS := tm-resched-dscr
|
|
|
|
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
|