2015-03-04 04:53:40 +00:00
|
|
|
# additional include paths necessary to compile the C++ library
|
|
|
|
AM_CXXFLAGS = -I$(top_srcdir)/
|
|
|
|
|
2015-04-14 20:22:04 +01:00
|
|
|
|
|
|
|
extra_sources=
|
|
|
|
if BUILD_COMMS_MPI
|
|
|
|
extra_sources+=Grid_communicator_mpi.cc
|
|
|
|
extra_sources+=Grid_stencil_common.cc
|
|
|
|
endif
|
|
|
|
if BUILD_COMMS_NONE
|
|
|
|
extra_sources+=Grid_communicator_fake.cc
|
|
|
|
extra_sources+=Grid_stencil_common.cc
|
|
|
|
endif
|
|
|
|
|
2015-03-04 04:53:40 +00:00
|
|
|
#
|
|
|
|
# Libraries
|
|
|
|
#
|
|
|
|
lib_LIBRARIES = libGrid.a
|
2015-04-14 20:22:04 +01:00
|
|
|
libGrid_a_SOURCES = Grid_init.cc $(extra_sources)
|
2015-03-04 04:53:40 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Include files
|
|
|
|
#
|
2015-04-03 05:51:05 +01:00
|
|
|
include_HEADERS = Grid_config.h\
|
|
|
|
Grid.h\
|
|
|
|
Grid_simd.h\
|
2015-03-04 04:53:40 +00:00
|
|
|
Grid_vComplexD.h\
|
|
|
|
Grid_vComplexF.h\
|
|
|
|
Grid_vRealD.h\
|
|
|
|
Grid_vRealF.h\
|
|
|
|
Grid_Cartesian.h\
|
|
|
|
Grid_Lattice.h\
|
2015-04-03 05:51:05 +01:00
|
|
|
Grid_Communicator.h\
|
|
|
|
Grid_QCD.h\
|
|
|
|
Grid_aligned_allocator.h\
|
|
|
|
Grid_cshift.h\
|
|
|
|
Grid_cshift_common.h\
|
|
|
|
Grid_cshift_mpi.h\
|
|
|
|
Grid_cshift_none.h\
|
2015-04-14 20:22:04 +01:00
|
|
|
Grid_stencil.h\
|
2015-04-03 05:51:05 +01:00
|
|
|
Grid_math_types.h
|
|
|
|
|
2015-03-04 04:53:40 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test code
|
|
|
|
#
|
2015-04-14 20:22:04 +01:00
|
|
|
bin_PROGRAMS = Grid_main test_Grid_stencil
|
2015-04-03 04:52:53 +01:00
|
|
|
|
2015-04-14 20:22:04 +01:00
|
|
|
Grid_main_SOURCES = Grid_main.cc
|
|
|
|
Grid_main_LDADD = libGrid.a
|
2015-04-03 04:52:53 +01:00
|
|
|
|
2015-04-14 20:22:04 +01:00
|
|
|
test_Grid_stencil_SOURCES = test_Grid_Stencil.cc
|
|
|
|
test_Grid_stencil_LDADD = libGrid.a
|
2015-03-29 21:44:22 +01:00
|
|
|
|