| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | PYTHON=pythonSPHINX_DIR="docs/"SPHINX_BUILDDIR="${SPHINX_DIR}/.build"README="README.rst"CONTRIBUTING="CONTRIBUTING.rst"CONFIGREF_SRC="docs/configuration.rst"README_SRC="docs/templates/readme.txt"CONTRIBUTING_SRC="docs/contributing.rst"SPHINX2RST="extra/release/sphinx-to-rst.py"WORKER_GRAPH_FULL="docs/images/worker_graph_full.png"SPHINX_HTMLDIR = "${SPHINX_BUILDDIR}/html"html:	(cd "$(SPHINX_DIR)"; make html)	mv "$(SPHINX_HTMLDIR)" Documentationdocsclean:	-rm -rf "$(SPHINX_BUILDDIR)"htmlclean:	-rm -rf "$(SPHINX)"apicheck:	extra/release/doc4allmods celeryindexcheck:	extra/release/verify-reference-index.shconfigcheck:	PYTHONPATH=. $(PYTHON) extra/release/verify_config_reference.py $(CONFIGREF_SRC)flakecheck:	flake8 celeryflakediag:	-$(MAKE) flakecheckflakepluscheck:	flakeplus celery --2.6flakeplusdiag:	-$(MAKE) flakepluscheckflakes: flakediag flakeplusdiagreadmeclean:	-rm -f $(README)readmecheck:	iconv -f ascii -t ascii $(README) >/dev/null$(README):	$(PYTHON) $(SPHINX2RST) $(README_SRC) --ascii > $@readme: readmeclean $(README) readmecheckcontributingclean:	-rm -f CONTRIBUTING.rst$(CONTRIBUTING):	$(PYTHON) $(SPHINX2RST) $(CONTRIBUTING_SRC) > $@contributing: contributingclean $(CONTRIBUTING)test:	nosetests -xv celery.testscov:	nosetests -xv celery.tests --with-coverage --cover-html --cover-branchremovepyc:	-find . -type f -a \( -name "*.pyc" -o -name "*$$py.class" \) | xargs rm	-find . -type d -name "__pycache__" | xargs rm -r$(WORKER_GRAPH_FULL):	$(PYTHON) -m celery graph bootsteps | dot -Tpng -o $@graphclean:	-rm -f $(WORKER_GRAPH_FULL)graph: graphclean $(WORKER_GRAPH_FULL)gitclean:	git clean -xdngitcleanforce:	git clean -xdfdistcheck: flakecheck apicheck indexcheck configcheck readmecheck test gitcleanauthorcheck:	git shortlog -se | cut -f2 | extra/release/attribution.pydist: readme contributing docsclean gitcleanforce removepyc
 |