You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
817 B

  1. default: update
  2. update: compile update-readme update-latest
  3. update-latest:
  4. ./youtube-dl.dev --version > LATEST_VERSION
  5. update-readme:
  6. @options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
  7. header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
  8. footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
  9. echo "$${header}" > README.md && \
  10. echo >> README.md && \
  11. echo '## OPTIONS' >> README.md && \
  12. echo "$${options}" >> README.md&& \
  13. echo >> README.md && \
  14. echo '## FAQ' >> README.md && \
  15. echo "$${footer}" >> README.md
  16. compile:
  17. zip --quiet --junk-paths youtube-dl youtube_dl/*.py
  18. echo '#!/usr/bin/env python' > youtube-dl
  19. cat youtube-dl.zip >> youtube-dl
  20. rm youtube-dl.zip
  21. .PHONY: default compile update update-latest update-readme