commit: b576abb4572c61289269db61da8c472d487a7a03
parent f166bccc8f4366531783d0e0c4c1eb3a585cdfb0
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Tue, 13 Sep 2011 22:29:50 +0200
Automatically generate LATEST_VERSION (Closes #16)
Diffstat:
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/LATEST_VERSION b/LATEST_VERSION
@@ -0,0 +1 @@
+2011.09.13
diff --git a/Makefile b/Makefile
@@ -1,7 +1,9 @@
default: update
-update: update-readme
+update: update-readme update-latest
+update-latest:
+ ./youtube-dl --version > LATEST_VERSION
update-readme:
@options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
@@ -15,4 +17,4 @@ update-readme:
-.PHONY: default update update-readme
+.PHONY: default update update-latest update-readme