1TEST_PROGS := tm-resched-dscr tm-syscall 2 3all: $(TEST_PROGS) 4 5$(TEST_PROGS): ../harness.c 6 7tm-syscall: tm-syscall-asm.S 8tm-syscall: CFLAGS += -mhtm -I../../../../../usr/include 9 10include ../../lib.mk 11 12clean: 13 rm -f $(TEST_PROGS) *.o 14