include.am 634 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. dox-pdf:
  6. echo "Generating PDF"
  7. cd doc && ./generate_documentation.sh -pdf > ./doxygen_pdf_warnings || (echo "HTML generation failed $$?"; exit 1)
  8. dox-html:
  9. echo "Generating HTML"
  10. cd doc && ./generate_documentation.sh -html > ./doxygen_html_warnings || (echo "HTML generation failed $$?"; exit 1)
  11. dox: dox-html dox-pdf
  12. clean-local:
  13. -rm -rf doc/build/
  14. -rm -rf doc/html/
  15. -rm -f doc/refman.pdf
  16. -rm -f doc/doxygen_warnings
  17. -rm -f doc/doxygen_html_warnings
  18. -rm -f doc/doxygen_pdf_warnings