13 lines
243 B
Makefile
13 lines
243 B
Makefile
TEST_PROGS := tm-resched-dscr tm-syscall
|
|
|
|
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
|