mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +00:00
28 lines
464 B
Makefile
28 lines
464 B
Makefile
# additional include paths necessary to compile the C++ library
|
|
|
|
SUBDIRS =
|
|
if BUILD_CHROMA_REGRESSION
|
|
SUBDIRS+= qdpxx
|
|
endif
|
|
|
|
AM_CXXFLAGS = -I$(top_srcdir)/lib
|
|
AM_LDFLAGS = -L$(top_builddir)/lib
|
|
|
|
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
|
|
|
|
if BUILD_ZMM
|
|
bin_PROGRAMS=Test_zmm
|
|
else
|
|
bin_PROGRAMS=
|
|
endif
|
|
|
|
include Make.inc
|