summaryrefslogtreecommitdiff
path: root/BFS/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-25 13:56:18 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-25 13:56:18 +0200
commit40e8a5eac49e91be407c36eef6fb326229945a22 (patch)
tree072fb847cfa1f0d52b6640321dcf81487fbbd7fa /BFS/Makefile
parentd41ec55b9847d16f32ca47155f2cd7e4ea72386a (diff)
BFS: run timeout in --foreground mode to pass on SIGINT
Diffstat (limited to 'BFS/Makefile')
-rw-r--r--BFS/Makefile6
1 files changed, 3 insertions, 3 deletions
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