mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
16 lines
334 B
Makefile
16 lines
334 B
Makefile
# additional include paths necessary to compile the C++ library
|
|
AM_CXXFLAGS = -I$(top_srcdir)/lib
|
|
AM_LDFLAGS = -L$(top_srcdir)/lib
|
|
|
|
#
|
|
# Test code
|
|
#
|
|
bin_PROGRAMS = Grid_main test_Grid_stencil
|
|
|
|
Grid_main_SOURCES = Grid_main.cc
|
|
Grid_main_LDADD = -lGrid
|
|
|
|
test_Grid_stencil_SOURCES = test_Grid_stencil.cc
|
|
test_Grid_stencil_LDADD = -lGrid
|
|
|