include.am 550 B

1234567891011121314151617181920212223
  1. # vim:ft=automake
  2. # included from Top Level Makefile.am
  3. # All paths should be given relative to the root
  4. dist_doc_DATA+= doc/README.txt \
  5. doc/QUIC.md
  6. dox-pdf:
  7. echo "Generating PDF"
  8. cd doc && ./generate_documentation.sh -install -pdf || (echo "HTML generation failed $$?"; exit 1)
  9. dox-html:
  10. echo "Generating HTML"
  11. cd doc && ./generate_documentation.sh -install -html || (echo "HTML generation failed $$?"; exit 1)
  12. dox: dox-html dox-pdf
  13. clean-local:
  14. -rm -rf doc/build/
  15. -rm -rf doc/html/
  16. -rm -f doc/refman.pdf
  17. -rm -f doc/doxygen_warnings