2016-06-12 00:26:05 +02:00
|
|
|
all:
|
|
|
|
@echo -e \
|
|
|
|
"Generate documentation:\n" \
|
|
|
|
"\tmake full - full documentation with dependency graphs (slow)\n" \
|
|
|
|
"\tmake fast - fast mode without dependency graphs"
|
|
|
|
|
|
|
|
full: brandt.doxy
|
|
|
|
doxygen $<
|
|
|
|
|
|
|
|
fast: brandt.doxy
|
|
|
|
sed 's/\(HAVE_DOT.*=\).*/\1 NO/' $< | doxygen -
|
|
|
|
|
|
|
|
clean:
|
2016-06-19 23:21:01 +02:00
|
|
|
rm -rf html man
|