summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BFS/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/BFS/Makefile b/BFS/Makefile
index 598de50..a773b38 100644
--- a/BFS/Makefile
+++ b/BFS/Makefile
@@ -40,10 +40,10 @@ all: bin/host_code bin/dpu_code
bin:
${QUIET}mkdir -p bin
-bin/dpu_code: ${DPU_SOURCES} ${COMMON_INCLUDES} bin
+bin/dpu_code: ${DPU_SOURCES} include bin
${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ ${DPU_SOURCES}
-bin/host_code: ${HOST_SOURCES} ${COMMON_INCLUDES} bin
+bin/host_code: ${HOST_SOURCES} include bin
${QUIET}cp ../include/dfatool_host_dpu.ah include
${QUIET}${HOST_CC} -o $@ ${HOST_SOURCES} ${HOST_FLAGS}
${QUIET}rm -f include/dfatool_host_dpu.ah