Add make task for cleaning artifacts from other branches

pull/974/head
Connor Rigby 2018-09-10 15:19:33 -07:00
parent 8c34f2eacd
commit 9481d2ff24
No known key found for this signature in database
GPG Key ID: 29A88B24B70456E0
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ help:
@echo "TARGETS: "
@echo " clean - clean all."
clean:
clean_other_branch:
rm -rf _build deps c_src config tmp
clean: clean_other_branch
@for project in $(PROJECTS) ; do \
echo cleaning $$project ; \
rm -rf $$project/_build ; \