youtube-dl/Makefile

22 lines
666 B
Makefile
Raw Normal View History

2011-08-28 22:17:32 +01:00
default: update
update: compile update-readme update-latest
2011-08-24 23:09:28 +01:00
update-latest:
2011-11-21 19:00:54 +00:00
./youtube-dl.dev --version > LATEST_VERSION
2011-08-24 23:09:28 +01:00
update-readme:
2011-11-21 19:00:54 +00:00
@options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
2011-08-24 23:09:28 +01:00
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
2011-09-04 10:47:58 +01:00
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
2011-08-24 23:09:28 +01:00
echo "$${header}" > README.md && \
echo -e '\n## OPTIONS' >> README.md && \
echo "$${options}" >> README.md&& \
2011-09-04 10:47:58 +01:00
echo -e '\n## FAQ' >> README.md && \
2011-08-24 23:09:28 +01:00
echo "$${footer}" >> README.md
compile:
cp youtube_dl/__init__.py youtube-dl
2011-08-24 23:09:28 +01:00
.PHONY: default compile update update-latest update-readme