diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-11-21 19:59:59 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-11-21 19:59:59 +0100 |
commit | 235b3ba479af9c779dd2609ba07003c0748b1a25 (patch) | |
tree | fed5a5b3a61551c3721fd7cbe808222bbaaee462 /Makefile | |
parent | 5b3330e0cfda443f4df86d827bb892781ecc832f (diff) |
Move code into a separate Python module
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |