blob: 2cede239a074dd110aa9ff3a6119b55f9c9d4ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|