Makefile.am 893 B

1234567891011121314151617181920212223242526
  1. SUBDIRS = guide design
  2. EXTRA_DIST = version.ent.in differences.txt Doxyfile Doxyfile-xml
  3. nobase_dist_doc_DATA = examples/kea4/single-subnet.json
  4. nobase_dist_doc_DATA += examples/kea4/several-subnets.json
  5. nobase_dist_doc_DATA += examples/kea6/simple.json
  6. nobase_dist_doc_DATA += examples/kea6/several-subnets.json
  7. nobase_dist_doc_DATA += examples/ddns/sample1.json
  8. nobase_dist_doc_DATA += examples/ddns/template.json
  9. devel:
  10. mkdir -p html
  11. (cat Doxyfile; echo PROJECT_NUMBER=$(PACKAGE_VERSION)) | doxygen - > html/doxygen.log 2> html/doxygen-error.log
  12. echo `grep -i ": warning:" html/doxygen-error.log | wc -l` warnings/errors detected.
  13. guide:
  14. $(MAKE) -C guide kea-guide.html
  15. clean:
  16. rm -rf html
  17. # That's a bit of a hack, but we are making sure that devel target
  18. # is always valid. The alternative is to make devel depend on all
  19. # *.cc *.h files in the whole tree.
  20. .PHONY: devel guide