Clean up some stuff in awxkit with make clean

This commit is contained in:
Bill Nottingham 2019-11-25 15:55:22 -05:00
parent caa6d0c4d3
commit 4acb28f6f5

View File

@ -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 \