From 9ed6721081548fe0c93314e1c05d99964ae5815b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Csord=C3=A1s?= Date: Wed, 1 Jul 2020 11:14:44 +0200 Subject: [PATCH] [vue] Clear dist and node_modules dirs on clean target --- Makefile | 6 ++---- web/Makefile | 4 ++++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b8c3d55969..67520b0c43 100644 --- a/Makefile +++ b/Makefile @@ -151,15 +151,13 @@ clean_venv_dev: $(MAKE) -C $(CC_WEB) clean_venv_dev $(MAKE) -C $(CC_TOOLS)/plist_to_html clean_venv_dev -clean: clean_package clean_vendor +clean: clean_package + $(MAKE) -C $(CC_WEB) clean clean_package: clean_plist_to_html clean_tu_collector clean_report_converter clean_report_hash rm -rf $(BUILD_DIR) find . -name "*.pyc" -delete -clean_vendor: - $(MAKE) -C $(CC_SERVER)/vendor clean_vendor - clean_plist_to_html: $(MAKE) -C $(CC_TOOLS)/plist_to_html clean diff --git a/web/Makefile b/web/Makefile index 6f28678491..fab83a9218 100644 --- a/web/Makefile +++ b/web/Makefile @@ -117,3 +117,7 @@ clean_package: clean_plist_to_html clean_plist_to_html: rm -rf $(ROOT)/tools/plist_to_html/build + +clean: + rm -rf $(CC_SERVER)/vue-cli/dist + rm -rf $(CC_SERVER)/vue-cli/node_modules