]> git.phdru.name Git - m_librarian.git/blob - Makefile
Add flake8 and release targets
[m_librarian.git] / 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         $(MAKE) -C docs-ru html
21
22 .PHONY: test
23 test:
24         $(MAKE) -C tests
25
26 .PHONY: tests
27 tests: test
28
29 .PHONY: clean
30 clean:
31         find . -name '*.py[co]' -type f -delete