Skip to content

Commit a35ba18

Browse files
committed
sw: Fix runtime build and clean targets
1 parent 6454ac7 commit a35ba18

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

target/snitch_cluster/sw.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ SN_CLUSTER_GEN_SRC ?= $(wildcard $(SN_ROOT)/util/clustergen/*.py)
1919

2020
.PHONY: snrt-all snrt-clean
2121

22-
snrt-all: snrt snrt-apps snrt-tests
23-
snrt-clean: snrt-clean-apps snrt-clean-tests
22+
snrt-all: snrt-runtime snrt-apps snrt-tests
23+
snrt-clean: snrt-clean-runtime snrt-clean-apps snrt-clean-tests
2424

2525
####################
2626
# Platform headers #

target/snitch_cluster/sw/runtime/runtime.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ SNRT_OUTPUTS = $(SNRT_LIB) $(SNRT_DUMP)
4545
# Rules #
4646
#########
4747

48-
.PHONY: snrt clean-snrt
48+
.PHONY: snrt-runtime snrt-clean-runtime
4949

50-
snrt: $(SNRT_OUTPUTS)
50+
snrt-runtime: $(SNRT_OUTPUTS)
5151

52-
clean-snrt:
52+
snrt-clean-runtime:
5353
rm -rf $(SNRT_BUILDDIR)
5454

5555
$(SNRT_BUILDDIR):

0 commit comments

Comments
 (0)