2013-03-23 16:30:19 +01:00
|
|
|
all: svtplay-dl
|
|
|
|
|
|
|
|
clean:
|
2013-08-10 20:50:52 +02:00
|
|
|
find . -name '*.pyc' -exec rm {} \;
|
2013-03-23 16:30:19 +01:00
|
|
|
rm -f svtplay-dl
|
|
|
|
|
2013-04-21 14:08:41 +02:00
|
|
|
export PACKAGES = svtplay_dl \
|
|
|
|
svtplay_dl.fetcher \
|
|
|
|
svtplay_dl.utils \
|
|
|
|
svtplay_dl.service
|
|
|
|
export PYFILES = $(addsuffix /*.py,$(subst .,/,$(PACKAGES)))
|
|
|
|
|
2013-05-27 20:30:22 +02:00
|
|
|
PYTHON = /usr/bin/env python
|
2013-03-23 16:30:19 +01:00
|
|
|
|
2013-04-21 14:08:41 +02:00
|
|
|
svtplay-dl: $(PYFILES)
|
|
|
|
zip --quiet svtplay-dl $(PYFILES)
|
2013-03-23 16:30:19 +01:00
|
|
|
zip --quiet --junk-paths svtplay-dl svtplay_dl/__main__.py
|
|
|
|
echo '#!$(PYTHON)' > svtplay-dl
|
|
|
|
cat svtplay-dl.zip >> svtplay-dl
|
|
|
|
rm svtplay-dl.zip
|
|
|
|
chmod a+x svtplay-dl
|