youtube-dl/Makefile

27 lines
817 B
Makefile
Raw Normal View History

2011-08-28 23:17:32 +02:00
default: update
update: compile update-readme update-latest
2011-08-25 00:09:28 +02:00
update-latest:
2011-11-21 20:00:54 +01:00
./youtube-dl.dev --version > LATEST_VERSION
2011-08-25 00:09:28 +02:00
update-readme:
2011-11-21 20:00:54 +01:00
@options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
2011-08-25 00:09:28 +02:00
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
2011-09-04 11:47:58 +02:00
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
2011-08-25 00:09:28 +02:00
echo "$${header}" > README.md && \
echo >> README.md && \
echo '## OPTIONS' >> README.md && \
2011-08-25 00:09:28 +02:00
echo "$${options}" >> README.md&& \
echo >> README.md && \
echo '## FAQ' >> README.md && \
2011-08-25 00:09:28 +02:00
echo "$${footer}" >> README.md
compile:
2012-05-23 19:19:53 +02:00
zip --quiet --junk-paths youtube-dl youtube_dl/*.py
echo '#!/usr/bin/env python' > youtube-dl
cat youtube-dl.zip >> youtube-dl
rm youtube-dl.zip
2011-08-25 00:09:28 +02:00
.PHONY: default compile update update-latest update-readme