1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 04:37:05 +01:00

Adding support for doxygen generation

This commit is contained in:
neo
2015-05-27 10:34:56 +09:00
parent 500f6ed0c5
commit da46b56e85
13 changed files with 7739 additions and 17 deletions

View File

@ -1,4 +1,11 @@
# additional include paths necessary to compile the C++ library
AM_CXXFLAGS = -I$(top_srcdir)/
SUBDIRS = lib tests benchmarks
SUBDIRS = lib tests benchmarks docs
if DOXYGEN_DOC
directory = $(top_srcdir)/docs/
doxyfile:
(cd $(directory) && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1;
endif