]> git.phdru.name Git - cookiecutter.git/blob - project_template/Makefile
Make tag-with-version alias
[cookiecutter.git] / project_template / Makefile
1
2 .PHONY: all
3 all:
4         @echo "Nothing to be done for 'all'"
5
6 .PHONY: release
7 release: tests flake8 html distr
8
9 .PHONY: distr
10 distr:
11         ./mk-distr
12
13 .PHONY: flake8
14 flake8:
15         flake8
16
17 .PHONY: html
18 html:
19         $(MAKE) -C docs html
20
21 .PHONY: test
22 test:
23         $(MAKE) -C tests
24
25 .PHONY: tests
26 tests: test
27
28 .PHONY: clean
29 clean:
30         find . -name '*.py[co]' -type f -delete