diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 14:29:20 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 14:29:20 +0200 |
commit | 408142542f09200bd3ce30bfe7872117c2f8f61e (patch) | |
tree | 4013bf20956dc9480f7ae7431a0911d6fab39dbb | |
parent | bfd65fdea6deb6f25dac527161e8318f4658e2a8 (diff) |
BFS Makefile: Explicitly mention include as dependency
-rw-r--r-- | BFS/Makefile | 4 |
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 |