diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-06-02 16:12:22 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-06-02 16:12:22 +0200 |
commit | 53f3c5bb8fd7698c4c37d5325ebc38e49534c3ba (patch) | |
tree | 0d5620e873d3904673865e91d0b10e5fe9863250 /VA/Makefile | |
parent | 1beb6e825643638e56126475f05409031eb7c270 (diff) |
VA: add sim benchmark
Diffstat (limited to 'VA/Makefile')
-rw-r--r-- | VA/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/VA/Makefile b/VA/Makefile index e0d392f..a67c600 100644 --- a/VA/Makefile +++ b/VA/Makefile @@ -35,7 +35,7 @@ endif QUIET = @ -ifdef verbose +ifeq (${verbose}, 1) QUIET = endif @@ -45,12 +45,12 @@ bin: ${QUIET}mkdir -p bin # cp/rm are needed to work around AspectC++ not liking symlinks -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 -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} clean: |