Skip to content

Commit

Permalink
sw: Fix runtime build and clean targets
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Feb 6, 2025
1 parent 6454ac7 commit a35ba18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions target/snitch_cluster/sw.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ SN_CLUSTER_GEN_SRC ?= $(wildcard $(SN_ROOT)/util/clustergen/*.py)

.PHONY: snrt-all snrt-clean

snrt-all: snrt snrt-apps snrt-tests
snrt-clean: snrt-clean-apps snrt-clean-tests
snrt-all: snrt-runtime snrt-apps snrt-tests
snrt-clean: snrt-clean-runtime snrt-clean-apps snrt-clean-tests

####################
# Platform headers #
Expand Down
6 changes: 3 additions & 3 deletions target/snitch_cluster/sw/runtime/runtime.mk
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ SNRT_OUTPUTS = $(SNRT_LIB) $(SNRT_DUMP)
# Rules #
#########

.PHONY: snrt clean-snrt
.PHONY: snrt-runtime snrt-clean-runtime

snrt: $(SNRT_OUTPUTS)
snrt-runtime: $(SNRT_OUTPUTS)

clean-snrt:
snrt-clean-runtime:
rm -rf $(SNRT_BUILDDIR)

$(SNRT_BUILDDIR):
Expand Down

0 comments on commit a35ba18

Please sign in to comment.