Makefile.am 472 B

12345678910111213141516
  1. SUBDIRS = guide
  2. EXTRA_DIST = version.ent.in
  3. devel:
  4. mkdir -p html
  5. (cat Doxyfile; echo PROJECT_NUMBER=$(PACKAGE_VERSION)) | doxygen - > html/doxygen.log 2> html/doxygen-error.log
  6. echo `grep -i ": warning:" html/doxygen-error.log | wc -l` warnings/errors detected.
  7. clean:
  8. rm -rf html
  9. # That's a bit of a hack, but we are making sure that devel target
  10. # is always valid. The alternative is to make devel depend on all
  11. # *.cc *.h files in the whole tree.
  12. .PHONY: devel