diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2017-06-23 18:44:03 +0200 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2017-06-23 21:56:43 +0200 |
commit | e1416138f96c8f55789a4ab19bdd6d47a83d79b2 (patch) | |
tree | c09844d66eb8e5a15b1b3b514c67a0470bb384a8 /Makefile | |
parent | Docker image updates for integration tests. (#26054) (diff) | |
download | ansible-e1416138f96c8f55789a4ab19bdd6d47a83d79b2.tar.xz ansible-e1416138f96c8f55789a4ab19bdd6d47a83d79b2.zip |
avoid exporting files useless to dist
also fixed up clean in make file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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 |