1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00
Grid/tests/Makefile.am

27 lines
513 B
Makefile
Raw Normal View History

2015-04-18 14:55:00 +01:00
# additional include paths necessary to compile the C++ library
2016-07-08 17:16:08 +01:00
#SUBDIRS = core
2016-07-07 22:31:07 +01:00
# Uncomment to enable complete test suite build
2016-07-08 17:16:08 +01:00
SUBDIRS = core forces hmc solver debug
2016-07-07 22:31:07 +01:00
if BUILD_CHROMA_REGRESSION
SUBDIRS+= qdpxx
endif
2016-07-07 22:31:07 +01:00
bin_PROGRAMS =
2016-07-07 22:31:07 +01:00
AM_CXXFLAGS = -I$(top_srcdir)/include
2015-05-15 12:21:40 +01:00
AM_LDFLAGS = -L$(top_builddir)/lib
2015-04-18 14:55:00 +01:00
if USE_LAPACK
AM_CXXFLAGS += -DUSE_LAPACK
if USE_LAPACK_LIB
#if test "X${ac_LAPACK}X" != XyesX
AM_CXXFLAGS += -I$(ac_LAPACK)/include
AM_LDFLAGS += -L$(ac_LAPACK)/lib
#fi
endif
endif
include Make.inc