Makefile.am 372 B

12345678910111213
  1. SUBDIRS = guide
  2. EXTRA_DIST = version.ent.in
  3. devel:
  4. mkdir -p html
  5. doxygen Doxyfile > html/doxygen.log 2> html/doxygen-error.log
  6. echo "`wc -l html/doxygen-error.log` errors detected."
  7. # That's a bit of a hack, but we are makeing sure that devel target
  8. # is always valid. The alternative is to make devel depend on all
  9. # *.cc *.h files in the whole tree.
  10. .PHONY: devel