diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-06-12 00:26:05 +0200 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2016-06-12 00:26:05 +0200 |
commit | 6416f0fbfe16593e019e1aae491b2dda53e20b8d (patch) | |
tree | 3e244962c136f2187f4bedab0378064e598bc41c /doc/Makefile.am | |
parent | ccce00377c64f9a45b86a71e4922e1e113386082 (diff) |
add doxygen stuff
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am new file mode 100644 index 0000000..9a68059 --- /dev/null +++ b/doc/Makefile.am @@ -0,0 +1,14 @@ +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: + rm -rf html |