mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-16 15:57:00 +00:00
For reasons see excellent paper 'Recursive Make Considered Harmful' by Peter Miller. References: http://miller.emu.id.au/pmiller/books/rmch/ Signed-off-by: Sami Kerola <kerolasa@iki.fi>
20 lines
289 B
Text
20 lines
289 B
Text
EXTRA_DIST += \
|
|
doc/doxy.conf.in \
|
|
doc/introduction.dox
|
|
|
|
if ENABLE_DOXYGEN
|
|
|
|
doxyfile.stamp:
|
|
$(DOXYGEN) doc/doxy.conf
|
|
date > doc/doxyfile.stamp
|
|
|
|
CLEANFILES += doc/doxyfile.stamp
|
|
|
|
all-local: doc/doxyfile.stamp
|
|
|
|
clean-local-doc:
|
|
-rm -rf doc/*html
|
|
|
|
CLEAN_LOCALS += clean-local-doc
|
|
|
|
endif
|