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

28 lines
485 B
Makefile
Raw Normal View History

2013-03-23 15:43:05 +01:00
all: svtplay-dl
2013-04-21 10:48:20 +02:00
.PHONY: test cover pylint
2013-03-23 15:43:05 +01:00
clean:
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
install: svtplay-dl
install -d $(DESTDIR)$(BINDIR)
install -m 755 svtplay-dl $(DESTDIR)$(BINDIR)
svtplay-dl: lib/svtplay_dl/*py lib/svtplay_dl/fetcher/*py lib/svtplay_dl/service/*py
2013-03-23 16:30:19 +01:00
cd lib; $(MAKE)
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