1# This Makefile.am is in the public domain
2all:
3	@echo -e \
4"Generate documentation:\n" \
5"\tmake full - full documentation with dependency graphs (slow)\n" \
6"\tmake fast - fast mode without dependency graphs"
7
8full: libmicrohttpd.doxy
9	doxygen $<
10
11fast: libmicrohttpd.doxy
12	sed 's/\(HAVE_DOT.*=\).*/\1 NO/' $< | doxygen -
13
14clean:
15	rm -rf html
16
17
18EXTRA_DIST = libmicrohttpd.doxy
19