Move code into a separate Python module

This commit is contained in:
Philipp Hagemeister 2011-11-21 19:59:59 +01:00
parent 5b3330e0cf
commit 235b3ba479
4 changed files with 4237 additions and 7 deletions

View file

@ -1,6 +1,6 @@
default: update
update: update-readme update-latest
update: compile update-readme update-latest
update-latest:
./youtube-dl --version > LATEST_VERSION
@ -15,6 +15,7 @@ update-readme:
echo -e '\n## FAQ' >> README.md && \
echo "$${footer}" >> README.md
compile:
cp youtube_dl/__init__.py youtube-dl
.PHONY: default update update-latest update-readme
.PHONY: default compile update update-latest update-readme