-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (27 loc) · 804 Bytes
/
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
# Filename: Makefile
PYLINT := pylint
PYTHON := python3
PIP_INSTALL_FLAGS := -r requirements.txt
.PHONY: help
help:
@printf "Usage: make [options] [target] ...\n"
@printf "\n"
@printf "Valid targets:\n"
@printf "\n"
@printf " help Display this help message\n"
@printf " test Run unit test suite\n"
@printf " lint Run lint checks\n"
@printf " cover Collect coverage\n"
@printf " html Build Sphinx documentation\n"
.PHONY: test
test:
@$(PYTHON) setup.py nosetests --with-doctest
.PHONY: lint
lint:
@$(PYLINT) vcd2wavedrom --rcfile .pylintrc
.PHONY: cover
cover:
@$(PYTHON) setup.py nosetests --with-doctest --with-coverage --cover-html --cover-package=vcd2wavedrom
.PHONY: html
html:
@$(PYTHON) setup.py build_sphinx