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.

18 lines
512 B

  1. default: update
  2. update: update-readme
  3. update-readme:
  4. @options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
  5. header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
  6. footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
  7. echo "$${header}" > README.md && \
  8. echo -e '\n## OPTIONS' >> README.md && \
  9. echo "$${options}" >> README.md&& \
  10. echo -e '\n## FAQ' >> README.md && \
  11. echo "$${footer}" >> README.md
  12. .PHONY: default update update-readme