1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00
svtplay-dl/Makefile

33 lines
576 B
Makefile
Raw Normal View History

2013-03-23 15:43:05 +01:00
all: svtplay-dl
.PHONY: test cover pylint svtplay-dl
2013-04-21 10:48:20 +02:00
2013-03-23 15:43:05 +01:00
clean:
$(MAKE) -C lib clean
2013-03-23 15:43:05 +01:00
rm -f svtplay-dl
2013-03-24 01:43:24 +01:00
PREFIX?=/usr/local
2013-03-23 15:43:05 +01:00
BINDIR=$(PREFIX)/bin
PYTHON=/usr/bin/env python
export PYTHONPATH=lib
2013-03-23 15:43:05 +01:00
# Disable convention, refactor, and TODO warnings
PYLINT_OPTS = -d C -d R -d W0511
2013-03-23 15:43:05 +01:00
install: svtplay-dl
install -d $(DESTDIR)$(BINDIR)
install -m 755 svtplay-dl $(DESTDIR)$(BINDIR)
svtplay-dl: $(PYFILES)
$(MAKE) -C lib
2013-03-23 16:30:19 +01:00
mv lib/svtplay-dl .
2013-03-23 17:07:36 +01:00
test:
sh run-tests.sh
2013-04-21 10:48:20 +02:00
cover:
sh run-tests.sh -C
pylint:
find lib -name '*.py' -a '!' -path '*/tests/*' | xargs pylint $(PYLINT_OPTS)