bump version to 1.10
[mygpoclient.git] / makefile
blobeace3d7df07cbf790117a4dba9474348959638c8
1 # gpodder.net API Client
2 # Copyright (C) 2009-2013 Thomas Perl and the gPodder Team
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 PACKAGE := mygpoclient
19 PYTHON ?= python
20 FIND ?= find
21 PYTEST ?= $(PYTHON) -m pytest
23 help:
24 @echo ""
25 @echo "$(MAKE) test ......... Run unit tests"
26 @echo "$(MAKE) clean ........ Clean build directory"
27 @echo "$(MAKE) distclean .... $(MAKE) clean + remove 'dist/'"
28 @echo ""
30 test:
31 $(PYTEST)
33 docs:
34 epydoc -n 'gpodder.net API Client Library' -o docs/ mygpoclient -v --exclude='.*_test'
36 clean:
37 $(FIND) . -name '*.pyc' -o -name __pycache__ -exec $(RM) -r '{}' +
38 $(RM) -r build
39 $(RM) .coverage MANIFEST
41 distclean: clean
42 $(RM) -r dist
44 .PHONY: help test docs clean distclean
45 .DEFAULT: help