From 40e8a5eac49e91be407c36eef6fb326229945a22 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 25 May 2023 13:56:18 +0200 Subject: BFS: run timeout in --foreground mode to pass on SIGINT --- BFS/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'BFS/Makefile') diff --git a/BFS/Makefile b/BFS/Makefile index 7577724..2e1dcfe 100644 --- a/BFS/Makefile +++ b/BFS/Makefile @@ -22,14 +22,14 @@ all: bin/host_code bin/dpu_code bin: ${QUIET}mkdir -p bin -bin/dpu_code: ${DPU_SOURCES} ${COMMON_INCLUDES} +bin/dpu_code: ${DPU_SOURCES} ${COMMON_INCLUDES} bin ${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ ${DPU_SOURCES} -bin/host_code: ${HOST_SOURCES} ${COMMON_INCLUDES} +bin/host_code: ${HOST_SOURCES} ${COMMON_INCLUDES} bin ${QUIET}${CC} -o $@ ${HOST_SOURCES} ${HOST_FLAGS} clean: - rm -rf bin + ${QUIET}rm -rf bin test: all bin/host_code -- cgit v1.2.3