2015-03-04 04:53:40 +00:00
|
|
|
# additional include paths necessary to compile the C++ library
|
|
|
|
AM_CXXFLAGS = -I$(top_srcdir)/
|
|
|
|
|
|
|
|
#
|
|
|
|
# Libraries
|
|
|
|
#
|
|
|
|
lib_LIBRARIES = libGrid.a
|
2015-03-04 13:44:33 +00:00
|
|
|
libGrid_a_SOURCES = Grid_init.cc
|
2015-03-04 04:53:40 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Include files
|
|
|
|
#
|
|
|
|
include_HEADERS = Grid.h\
|
|
|
|
Grid_vComplexD.h\
|
|
|
|
Grid_vComplexF.h\
|
|
|
|
Grid_vRealD.h\
|
|
|
|
Grid_vRealF.h\
|
|
|
|
Grid_Cartesian.h\
|
|
|
|
Grid_Lattice.h\
|
|
|
|
Grid_config.h
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test code
|
|
|
|
#
|
|
|
|
bin_PROGRAMS = Grid_main
|
2015-03-29 21:44:22 +01:00
|
|
|
Grid_main_SOURCES = \
|
|
|
|
Grid_main.cc\
|
|
|
|
Grid_fake.cc
|
|
|
|
|
2015-03-04 04:53:40 +00:00
|
|
|
Grid_main_LDADD = libGrid.a
|