youtube-dl/Makefile

22 lines
666 B
Makefile
Raw Normal View History

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