]> git.phdru.name Git - cookiecutter.git/blob - project_template/Makefile
Fix mode for open at w32
[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 docs distr
8
9 .PHONY: distr
10 distr:
11         ./mk-distr
12
13 .PHONY: flake8
14 flake8:
15         flake8
16
17 .PHONY: docs
18 docs: html
19
20 .PHONY: html
21 html:
22         $(MAKE) -C docs html
23
24 .PHONY: test
25 test:
26         $(MAKE) -C tests
27
28 .PHONY: tests
29 tests: test
30
31 .PHONY: clean
32 clean:
33         find . -name '*.py[co]' -type f -delete