mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
42 lines
688 B
Makefile
42 lines
688 B
Makefile
AM_CXXFLAGS = -I$(top_srcdir)/programs -I$(top_srcdir)/lib
|
|
AM_LDFLAGS = -L$(top_builddir)/lib
|
|
|
|
bin_PROGRAMS = Hadrons
|
|
|
|
# general sources
|
|
Hadrons_SOURCES = \
|
|
Application.cc \
|
|
Environment.cc \
|
|
Global.cc \
|
|
Hadrons.cc \
|
|
Module.cc
|
|
|
|
# general modules
|
|
Hadrons_SOURCES += \
|
|
MQuark.cc
|
|
|
|
# fermion actions
|
|
Hadrons_SOURCES += \
|
|
AWilson.cc
|
|
|
|
# contraction modules
|
|
Hadrons_SOURCES += \
|
|
CMeson.cc
|
|
|
|
# gauge modules
|
|
Hadrons_SOURCES += \
|
|
GLoad.cc \
|
|
GRandom.cc \
|
|
GUnit.cc
|
|
|
|
# solver modules
|
|
Hadrons_SOURCES += \
|
|
SolRBPrecCG.cc
|
|
|
|
# source modules
|
|
Hadrons_SOURCES += \
|
|
SrcPoint.cc \
|
|
SrcZ2.cc
|
|
|
|
Hadrons_LDADD = -lGrid
|