mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
extra_sources=
|
|
extra_headers=
|
|
if BUILD_COMMS_MPI
|
|
extra_sources+=communicator/Communicator_mpi.cc
|
|
extra_sources+=communicator/Communicator_base.cc
|
|
endif
|
|
|
|
if BUILD_COMMS_MPI3
|
|
extra_sources+=communicator/Communicator_mpi3.cc
|
|
extra_sources+=communicator/Communicator_base.cc
|
|
endif
|
|
|
|
if BUILD_COMMS_MPI3L
|
|
extra_sources+=communicator/Communicator_mpi3_leader.cc
|
|
extra_sources+=communicator/Communicator_base.cc
|
|
endif
|
|
|
|
if BUILD_COMMS_SHMEM
|
|
extra_sources+=communicator/Communicator_shmem.cc
|
|
extra_sources+=communicator/Communicator_base.cc
|
|
endif
|
|
|
|
if BUILD_COMMS_NONE
|
|
extra_sources+=communicator/Communicator_none.cc
|
|
extra_sources+=communicator/Communicator_base.cc
|
|
endif
|
|
|
|
if BUILD_HDF5
|
|
extra_sources+=serialisation/Hdf5IO.cc
|
|
extra_headers+=serialisation/Hdf5IO.h
|
|
extra_headers+=serialisation/Hdf5Type.h
|
|
endif
|
|
|
|
#
|
|
# Libraries
|
|
#
|
|
include Make.inc
|
|
include Eigen.inc
|
|
|
|
lib_LIBRARIES = libGrid.a
|
|
|
|
CCFILES += $(extra_sources)
|
|
HFILES += $(extra_headers)
|
|
|
|
libGrid_a_SOURCES = $(CCFILES)
|
|
libGrid_adir = $(pkgincludedir)
|
|
nobase_dist_pkginclude_HEADERS = $(HFILES) $(eigen_files) Config.h
|