about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-09-13 22:29:50 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2011-09-13 22:29:50 +0200
commitb576abb4572c61289269db61da8c472d487a7a03 (patch)
tree8279d20146219f7773422070e4cf6ebf3f3c5b6e
parentf166bccc8f4366531783d0e0c4c1eb3a585cdfb0 (diff)
downloadyoutube-dl-b576abb4572c61289269db61da8c472d487a7a03.tar.gz
youtube-dl-b576abb4572c61289269db61da8c472d487a7a03.tar.xz
youtube-dl-b576abb4572c61289269db61da8c472d487a7a03.zip
Automatically generate LATEST_VERSION (Closes #16)
-rw-r--r--LATEST_VERSION1
-rw-r--r--Makefile6
2 files changed, 5 insertions, 2 deletions
diff --git a/LATEST_VERSION b/LATEST_VERSION
new file mode 100644
index 000000000..afa0b7718
--- /dev/null
+++ b/LATEST_VERSION
@@ -0,0 +1 @@
+2011.09.13
diff --git a/Makefile b/Makefile
index 0039f90c9..e725dc720 100644
--- 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