summaryrefslogtreecommitdiff
path: root/Microbenchmarks
diff options
context:
space:
mode:
authorMarcel Köppen <marcel.koeppen@uos.de>2024-05-13 13:26:32 +0200
committerMarcel Köppen <marcel.koeppen@uos.de>2024-05-13 13:26:32 +0200
commit0dde00801056d7959cfa2d1d1292770183dfe524 (patch)
tree174f4101e2215a04dd056ceb03ce0aa980bfa3df /Microbenchmarks
parent98df3d2727182f6e0d249cc22cc08a3561e52de0 (diff)
Add depenceny on bin directory
Diffstat (limited to 'Microbenchmarks')
-rw-r--r--Microbenchmarks/STREAM/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Microbenchmarks/STREAM/Makefile b/Microbenchmarks/STREAM/Makefile
index 048a46e..f5237bb 100644
--- a/Microbenchmarks/STREAM/Makefile
+++ b/Microbenchmarks/STREAM/Makefile
@@ -31,11 +31,11 @@ all: bin/dpu_code bin/host_code
bin:
${QUIET}mkdir -p bin
-bin/dpu_code: ${DPU_SOURCES}
+bin/dpu_code: ${DPU_SOURCES} bin
${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} ${DPU_SOURCES} -o $@
-bin/host_code: ${HOST_SOURCES}
${QUIET}${CC} ${HOST_FLAGS} ${HOST_SOURCES} -o $@
+bin/host_code: ${HOST_SOURCES} bin
clean:
${QUIET}${RM} -f bin/dpu_code bin/host_code