mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
19 lines
398 B
Makefile
19 lines
398 B
Makefile
# This Makefile.am is in the public domain
|
|
all:
|
|
@echo -e \
|
|
"Generate doxygen additional documentation:\n" \
|
|
"\tmake full - full documentation with dependency graphs (slow)\n" \
|
|
"\tmake fast - fast mode without dependency graphs"
|
|
|
|
full: libmicrohttpd.doxy
|
|
doxygen $<
|
|
|
|
fast: libmicrohttpd.doxy
|
|
sed 's/\(HAVE_DOT.*=\).*/\1 NO/' $< | doxygen -
|
|
|
|
clean:
|
|
rm -rf html
|
|
|
|
|
|
EXTRA_DIST = libmicrohttpd.doxy
|