aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-11-21 19:59:59 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2011-11-21 19:59:59 +0100
commit235b3ba479af9c779dd2609ba07003c0748b1a25 (patch)
treefed5a5b3a61551c3721fd7cbe808222bbaaee462 /Makefile
parent5b3330e0cfda443f4df86d827bb892781ecc832f (diff)
downloadyoutube-dl-235b3ba479af9c779dd2609ba07003c0748b1a25.tar.xz
Move code into a separate Python module
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e725dc720..f0602d2fc 100644
--- a/Makefile
+++ b/Makefile
@@ -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