Makefile 247 B

12345678910111213
  1. all: update
  2. whitepaper.txt: whitepaper.xml
  3. xml2rfc whitepaper.xml --verbose --text
  4. whitepaper.xml: whitepaper.md
  5. mmark whitepaper.md > whitepaper.xml
  6. update: whitepaper.txt
  7. git add .
  8. git commit -m "automatic documentation update"
  9. git push