From 4acb28f6f55ab2aba9c017079637325185cf549c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 25 Nov 2019 15:55:22 -0500 Subject: [PATCH] Clean up some stuff in awxkit with `make clean` --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 25de623ff8..198e7ca23e 100644 --- a/Makefile +++ b/Makefile @@ -100,7 +100,7 @@ clean-languages: find . -type f -regex ".*\.mo$$" -delete # Remove temporary build files, compiled Python files. -clean: clean-ui clean-api clean-dist +clean: clean-ui clean-api clean-awxkit clean-dist rm -rf awx/public rm -rf awx/lib/site-packages rm -rf awx/job_status @@ -117,6 +117,9 @@ clean-api: rm -f awx/awx_test.sqlite3* rm -rf requirements/vendor +clean-awxkit: + rm -rf awxkit/*.egg-info awxkit/.tox + # convenience target to assert environment variables are defined guard-%: @if [ "$${$*}" = "" ]; then \