-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
76 lines (52 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Reference card for usual actions in development environment.
#
# For standard installation of django-confit as a library, see INSTALL.
#
# For details about django-confit's development environment, see
# CONTRIBUTING.rst.
#
PIP = pip
TOX = tox
.PHONY: all help develop clean distclean maintainer-clean test test-app healthcheck sphinx readme documentation release
#: help - Display callable targets.
help:
@echo "Reference card for usual actions in development environment."
@echo "Here are available targets:"
@egrep -o "^#: (.+)" [Mm]akefile | sed 's/#: /* /'
#: develop - Install minimal development utilities such as tox.
develop:
$(PIP) install tox
$(PIP) install -e ./
#: clean - Basic cleanup, mostly temporary files.
clean:
find . -name "*.pyc" -delete
find . -name "__pycache__" -delete
find . -name ".noseids" -delete
#: distclean - Remove local builds, such as *.egg-info.
distclean: clean
rm -rf *.egg
rm -rf *.egg-info
#: maintainer-clean - Remove almost everything that can be re-generated.
maintainer-clean: distclean
rm -rf bin/
rm -rf lib/
rm -rf build/
rm -rf dist/
rm -rf .tox/
#: test - Run all test suite.
test:
$(TOX)
#: test-app - Run unit tests.
test-app:
$(TOX) -e py27,py33
#: sphinx - Build Sphinx documentation in var/docs/html
sphinx:
$(TOX) -e sphinx
#: readme - Build standalone documentation files (README, CONTRIBUTING...).
readme:
$(TOX) -e readme
#: documentation - Build standalone documentation files and Sphinx docs.
documentation: sphinx readme
#: release - Tag and push to PyPI.
release:
$(TOX) -e release