Unverified Commit bb9638bb authored by Jakob Görgen's avatar Jakob Görgen
Browse files

symphony/rules: added clean target for symphony dist folders

parent e2443c0d
...@@ -43,7 +43,11 @@ symphony-publish: ...@@ -43,7 +43,11 @@ symphony-publish:
poetry publish -r $(SYMPHONY_PUBLICATION_REPO)); \ poetry publish -r $(SYMPHONY_PUBLICATION_REPO)); \
done done
.PHONY: symphony-dev symphony-build symphony-publish TO_CLEAN := $(addsuffix /dist, $(addprefix $(SYMPHONY_DIR), $(SYMPHONY_MODS)))
symphony-clean:
rm -rf $(TO_CLEAN)
CLEAN := $(addsuffix /dist, $(addprefix $(SYMPHONY_DIR), $(SYMPHONY_MODS))) .PHONY: symphony-dev symphony-build symphony-publish symphony-clean
CLEAN := $(TO_CLEAN)
include mk/subdir_post.mk include mk/subdir_post.mk
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment