diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-15 11:53:50 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-15 11:53:50 +0200 |
commit | ae2aaee2e3f82f62a76fac7f1db9409ee9bb2ad6 (patch) | |
tree | 474afdf69f3e86f96ac53743b0e03ad4a507cd3b /MLP/Makefile | |
parent | 91491e329c1116a805229cfa75db0516a1268e54 (diff) |
MLP: fix loop iteration joinpoint
Diffstat (limited to 'MLP/Makefile')
-rw-r--r-- | MLP/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MLP/Makefile b/MLP/Makefile index 9d69752..1ce804d 100644 --- a/MLP/Makefile +++ b/MLP/Makefile @@ -43,10 +43,10 @@ bin/mlp_host: ${HOST_SOURCES} include bin ${QUIET}rm -f include/dfatool_host_dpu.ah bin/mlp_dpu: ${DPU_SOURCES} include bin - dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ ${DPU_SOURCES} + ${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} -o $@ ${DPU_SOURCES} clean: - $(RM) -r $(BUILDDIR) + ${QUIET}$(RM) -r $(BUILDDIR) test: all bin/mlp_host -m 1024 -n 1024 |