1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 20:57:06 +01:00

Assist for generating file lists contained in Make.inc files for convenience when things are added

This commit is contained in:
Peter Boyle
2015-06-03 13:07:00 +01:00
parent 4ef11d96e9
commit eaa3e6aaf6
9 changed files with 157 additions and 276 deletions

23
benchmarks/Make.inc Normal file
View File

@ -0,0 +1,23 @@
bin_PROGRAMS = Benchmark_comms Benchmark_dwf Benchmark_memory_bandwidth Benchmark_su3 Benchmark_wilson
Benchmark_comms_SOURCES=Benchmark_comms.cc
Benchmark_comms_LDADD=-lGrid
Benchmark_dwf_SOURCES=Benchmark_dwf.cc
Benchmark_dwf_LDADD=-lGrid
Benchmark_memory_bandwidth_SOURCES=Benchmark_memory_bandwidth.cc
Benchmark_memory_bandwidth_LDADD=-lGrid
Benchmark_su3_SOURCES=Benchmark_su3.cc
Benchmark_su3_LDADD=-lGrid
Benchmark_wilson_SOURCES=Benchmark_wilson.cc
Benchmark_wilson_LDADD=-lGrid

View File

@ -5,25 +5,4 @@ AM_LDFLAGS = -L$(top_builddir)/lib
#
# Test code
#
bin_PROGRAMS = \
Benchmark_comms \
Benchmark_memory_bandwidth \
Benchmark_su3 \
Benchmark_wilson \
Benchmark_dwf
Benchmark_comms_SOURCES = Benchmark_comms.cc
Benchmark_comms_LDADD = -lGrid
Benchmark_memory_bandwidth_SOURCES = Benchmark_memory_bandwidth.cc
Benchmark_memory_bandwidth_LDADD = -lGrid
Benchmark_su3_SOURCES = Benchmark_su3.cc Benchmark_su3_test.cc Benchmark_su3_expr.cc
Benchmark_su3_LDADD = -lGrid
Benchmark_wilson_SOURCES = Benchmark_wilson.cc
Benchmark_wilson_LDADD = -lGrid
Benchmark_dwf_SOURCES = Benchmark_dwf.cc
Benchmark_dwf_LDADD = -lGrid
include Make.inc