We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c02f4e commit 99af591Copy full SHA for 99af591
target/snitch_cluster/sw.mk
@@ -59,6 +59,9 @@ include $(SN_ROOT)/target/snitch_cluster/sw/toolchain.mk
59
include $(SN_ROOT)/target/snitch_cluster/sw/runtime/runtime.mk
60
include $(SN_ROOT)/target/snitch_cluster/sw/tests/tests.mk
61
62
+SNRT_BUILD_APPS ?= ON
63
+
64
+ifeq ($(SNRT_BUILD_APPS), ON)
65
SNRT_APPS = sw/apps/nop
66
SNRT_APPS += sw/apps/blas/axpy
67
SNRT_APPS += sw/apps/blas/gemm
@@ -85,5 +88,6 @@ SNRT_APPS += sw/apps/kmeans
85
88
86
89
# Include Makefile from each app subdirectory
87
90
$(foreach app,$(SNRT_APPS), \
- $(eval include $(app)/app.mk) \
91
+ $(eval include $(SN_ROOT)/target/snitch_cluster/$(app)/app.mk) \
92
)
93
+endif
0 commit comments