2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00
Files
kea/doc/Makefile.am

17 lines
517 B
Makefile
Raw Normal View History

2013-06-18 23:50:17 +05:30
SUBDIRS = guide design
2011-01-20 13:17:30 -06:00
2013-06-07 05:18:20 +05:30
EXTRA_DIST = version.ent.in differences.txt Doxyfile Doxyfile-xml
2012-01-13 16:35:35 -08:00
devel:
mkdir -p html
2012-05-08 17:08:48 +02:00
(cat Doxyfile; echo PROJECT_NUMBER=$(PACKAGE_VERSION)) | doxygen - > html/doxygen.log 2> html/doxygen-error.log
echo `grep -i ": warning:" html/doxygen-error.log | wc -l` warnings/errors detected.
clean:
rm -rf html
2012-01-13 16:35:35 -08:00
# That's a bit of a hack, but we are making sure that devel target
2012-01-13 16:35:35 -08:00
# is always valid. The alternative is to make devel depend on all
# *.cc *.h files in the whole tree.
.PHONY: devel