blob: 9d301d785d9ea137afd20517fc6c875816043410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
TEST_PROGS := tm-resched-dscr tm-syscall tm-signal-msr-resv tm-signal-stack \
tm-vmxcopy tm-fork tm-tar tm-tmspr tm-exec tm-execed
all: $(TEST_PROGS)
$(TEST_PROGS): ../harness.c ../utils.c
CFLAGS += -mhtm
tm-syscall: tm-syscall-asm.S
tm-syscall: CFLAGS += -I../../../../../usr/include
tm-tmspr: CFLAGS += -pthread
include ../../lib.mk
clean:
rm -f $(TEST_PROGS) *.o
|