hy/Makefile

81 lines
1.3 KiB
Makefile
Raw Permalink Normal View History

2014-11-06 04:01:10 +01:00
pip_url=https://bootstrap.pypa.io/get-pip.py
python=python
pip=pip
coveralls=coveralls
2013-03-03 05:52:56 +01:00
all:
@echo "No default step. Use setup.py"
@echo ""
@echo " Other targets:"
@echo ""
2013-03-14 00:43:19 +01:00
@echo " - docs"
@echo " - full"
@echo ""
2013-03-03 05:52:56 +01:00
@echo " - dev (test & flake)"
@echo " - flake"
@echo " - test"
2013-03-06 03:44:26 +01:00
@echo " - diff"
2013-03-07 01:19:54 +01:00
@echo " - tox"
2013-03-06 03:44:26 +01:00
@echo " - d"
@echo " - r"
@echo " - clean"
2013-03-03 05:52:56 +01:00
@echo ""
2013-03-14 00:43:19 +01:00
docs:
$(MAKE) -C docs html
2013-03-14 00:43:19 +01:00
2013-04-08 01:45:38 +02:00
upload: r
python setup.py sdist upload
2013-04-13 05:46:28 +02:00
full: d tox docs
2013-03-14 00:43:19 +01:00
2013-03-08 01:23:11 +01:00
venv:
ifeq (,$(findstring hy,$(VIRTUAL_ENV)))
@echo "You're not in a Hy virtualenv. FOR SHAME"
exit 1
else
@echo "We're properly in a virtualenv. Going ahead."
endif
2013-03-03 05:52:56 +01:00
2013-03-07 02:59:45 +01:00
dev: test flake
2013-03-03 05:52:56 +01:00
2013-03-08 01:23:11 +01:00
test: venv
2017-04-26 23:00:11 +02:00
pytest
2013-03-03 05:52:56 +01:00
2013-03-08 01:23:11 +01:00
tox: venv
2013-03-07 01:19:54 +01:00
tox
2013-03-03 05:52:56 +01:00
flake:
2017-05-10 00:28:56 +02:00
flake8 hy tests --ignore=E121,E123,E126,E226,E24,E704,W503,E302,E305,E701
2013-03-05 01:12:57 +01:00
clear:
clear
d: clear dev
2013-03-05 03:03:18 +01:00
diff:
git diff --color | less -r
2013-03-07 02:59:45 +01:00
r: d tox diff
2013-03-14 00:43:19 +01:00
2014-11-06 04:01:10 +01:00
python:
ifeq (Python 2.6,$(findstring Python 2.6,$(shell python -V 2>&1)))
$(pip) install unittest2
endif
$(pip) install -r requirements-travis.txt
$(pip) install coveralls
$(pip) install -e .
2014-11-06 04:01:10 +01:00
coveralls:
$(coveralls)
clean:
@find . -name "*.pyc" -exec rm {} \;
@find . -name __pycache__ -delete
@${RM} -r -f .tox
@${RM} -r -f dist
@${RM} -r -f *.egg-info
@${RM} -r -f docs/_build
.PHONY: all docs upload full venv dev test tox flake clear d diff r python coveralls clean