summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2017-06-23 12:44:03 -0400
committerBrian Coca <brian.coca+git@gmail.com>2017-06-23 15:56:43 -0400
commite1416138f96c8f55789a4ab19bdd6d47a83d79b2 (patch)
treec09844d66eb8e5a15b1b3b514c67a0470bb384a8 /Makefile
parent4530eea7f84446c85b4e04b7cf369c190a947c5d (diff)
downloadansible-e1416138f96c8f55789a4ab19bdd6d47a83d79b2.tar.gz
avoid exporting files useless to dist
also fixed up clean in make file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 7c34cb9a6e..32e9adc884 100644
--- a/Makefile
+++ b/Makefile
@@ -167,6 +167,12 @@ clean:
rm -f ./docs/man/man1/*
@echo "Cleaning up output from test runs"
rm -rf test/test_data
+ rm -rf shippable/
+ rm -rf logs/
+ rm -rf .cache/
+ rm -f test/units/.coverage*
+ rm -f test/results/*/*
+ find test/ -type f -name '*.retry' -delete
@echo "Cleaning up RPM building stuff"
rm -rf MANIFEST rpm-build
@echo "Cleaning up Debian building stuff"
@@ -176,13 +182,9 @@ clean:
rm -rf docs/js
@echo "Cleaning up authors file"
rm -f AUTHORS.TXT
- @echo "Cleaning up tests"
- rm -f test/units/.coverage*
- rm -f test/results/*/*
@echo "Cleaning up docsite"
$(MAKE) -C docs/docsite clean
$(MAKE) -C docs/api clean
- find test/ -type f -name '*.retry' -delete
python:
$(PYTHON) setup.py build