include.am 534 B

123456789101112131415161718192021
  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 -install -pdf || (echo "HTML generation failed $$?"; exit 1)
  8. dox-html:
  9. echo "Generating HTML"
  10. cd doc && ./generate_documentation.sh -install -html || (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