mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
12 lines
266 B
Makefile
12 lines
266 B
Makefile
# additional include paths necessary to compile the C++ library
|
|
AM_CXXFLAGS = -I$(top_srcdir)/
|
|
SUBDIRS = lib tests benchmarks docs
|
|
|
|
|
|
if DOXYGEN_DOC
|
|
directory = $(top_srcdir)/docs/
|
|
|
|
doxyfile:
|
|
(cd $(directory) && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1;
|
|
endif
|