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