]> git.phdru.name Git - m_librarian.git/blob - Makefile
make clean
[m_librarian.git] / Makefile
1
2 .PHONY: all
3 all:
4         @echo "Nothing to be done for 'all'"
5
6 .PHONY: distr
7 distr:
8         ./mk-distr
9
10 .PHONY: html
11 html:
12         $(MAKE) -C docs html
13         $(MAKE) -C docs-ru html
14
15 .PHONY: test
16 test:
17         $(MAKE) -C tests
18
19 .PHONY: tests
20 tests: test
21
22 .PHONY: clean
23 clean:
24         find . -depth -type f -name '*.py[co]' -delete