mirror of https://gitee.com/openkylin/linux.git
18 lines
374 B
Makefile
18 lines
374 B
Makefile
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
|