mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
25 lines
509 B
Makefile
25 lines
509 B
Makefile
extra_sources=
|
|
if BUILD_COMMS_MPI
|
|
extra_sources+=communicator/Communicator_mpi.cc
|
|
endif
|
|
|
|
if BUILD_COMMS_SHMEM
|
|
extra_sources+=communicator/Communicator_shmem.cc
|
|
endif
|
|
|
|
if BUILD_COMMS_NONE
|
|
extra_sources+=communicator/Communicator_none.cc
|
|
endif
|
|
|
|
#
|
|
# Libraries
|
|
#
|
|
include Make.inc
|
|
include Eigen.inc
|
|
|
|
lib_LTLIBRARIES = libGrid.la
|
|
|
|
libGrid_la_SOURCES = $(CCFILES) $(extra_sources)
|
|
libGrid_ladir = $(pkgincludedir)
|
|
nobase_dist_pkginclude_HEADERS = $(HFILES) $(eigen_files) Config.h
|