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
330B

  1. all: doxygen
  2. doxygen:
  3. doxygen Doxyfile
  4. # Fix 700 and 500 permissions that Doxygen generates for some reason
  5. find html -type d -exec chmod 755 {} \;
  6. find html -type f -exec chmod 644 {} \;
  7. run: doxygen
  8. http-server html
  9. upload: doxygen
  10. rsync html/ vcvrack.com:docs-v2/ -ruz --info=progress2 --delete
  11. clean:
  12. rm -rfv html