diff options
-rwxr-xr-x | acprep | 1 | ||||
-rw-r--r-- | src/draft.h | 10 | ||||
-rw-r--r-- | tools/Makefile.am | 3 |
3 files changed, 8 insertions, 6 deletions
@@ -764,6 +764,7 @@ class PrepareBuild(CommandLineApp): self.CPPFLAGS.append('-D_GLIBCXX_FULLY_DYNAMIC_STRING=1') self.configure_args.append('--disable-shared') + self.configure_args.append('--enable-doxygen') self.options.use_glibcxx_debug = True self.locate_my_libraries() diff --git a/src/draft.h b/src/draft.h index faefa67b..277b4ff8 100644 --- a/src/draft.h +++ b/src/draft.h @@ -30,17 +30,17 @@ */ /** - * @addtogroup derive + * @addtogroup expr */ /** - * @file derive.h + * @file draft.h * @author John Wiegley * * @ingroup report */ -#ifndef _DERIVE_H -#define _DERIVE_H +#ifndef _DRAFT_H +#define _DRAFT_H #include "exprbase.h" #include "value.h" @@ -110,4 +110,4 @@ value_t template_command(call_scope_t& args); } // namespace ledger -#endif // _DERIVE_H +#endif // _DRAFT_H diff --git a/tools/Makefile.am b/tools/Makefile.am index 8c28277b..74e4602c 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -440,7 +440,8 @@ fullcheck: cppunittests ###################################################################### -EXTRA_DIST += doc/README doc/LICENSE doc/NEWS doc/ledger.pdf +EXTRA_DIST += doc/README doc/NEWS doc/ledger.pdf +EXTRA_DIST += doc/LICENSE doc/LICENSE-sha1 doc/LICENSE-utfcpp if USE_DOXYGEN EXTRA_DIST += doc/Doxyfile doc/refman.pdf endif |