criu/test/cuda-checkpoint/Makefile
Andrei Vagin dea6305914 test/zdtm: allow to run tests with the mocked cuda-checkpoint tool
Here is an example how to run one test:
$ python test/zdtm.py run -t zdtm/static/env00 --ignore-taint --mocked-cuda-checkpoint

Signed-off-by: Andrei Vagin <avagin@google.com>
2024-09-11 16:02:11 -07:00

17 lines
276 B
Makefile

CFLAGS += $(USERCFLAGS) $(ARCHCFLAGS)
BIN := cuda-checkpoint
SRC := cuda-checkpoint.c
DEP := $(SRC:%.c=%.d)
OBJ := $(SRC:%.c=%.o)
TARGETS := $(BIN)
include ../zdtm/Makefile.inc
all: $(TARGETS)
.PHONY: all
clean-more:
$(RM) $(TARGETS)
.PHONY: clean-more
clean: clean-more