File: Makefile

package info (click to toggle)
python-caldav 1.3.9-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 636 kB
  • sloc: python: 6,824; makefile: 91; sh: 7
file content (24 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
TOX_DIR = .tox
BIN_DIR = ${TOX_DIR}/py37/bin/

install:
	tox --recreate --notest

test:
	tox

package:
	$(BIN_DIR)pip install wheel
	$(BIN_DIR)python setup.py sdist bdist_wheel


doc:
	$(BIN_DIR)pip install sphinx
	$(BIN_DIR)python setup.py build_sphinx

clean:
	find . -name __pycache__ -exec rm -r {} +
	rm -rf caldav.egg-info dist docs/build ${TOX_DIR}

mrproper: clean
	rm -rf ${TOX_DIR}