-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.am
41 lines (30 loc) · 855 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Copyright (C) 2014. See LICENSE in top-level directory.
#
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I$(top_srcdir)/src
lib_LTLIBRARIES = libbigmpi.la
noinst_LTLIBRARIES = libbigmpii.la
libbigmpi_la_SOURCES = src/collectives_x.c \
src/vcollectives_x.c \
src/neighborhood_collectives_x.c \
src/reductions_x.c \
src/rma_x.c \
src/sendrecv_x.c \
src/fileio_x.c \
src/type_contiguous_x.c \
src/type_hindexed_x.c \
src/utils.c
libbigmpi_la_LDFLAGS = -version-info $(libbigmpi_abi_version)
libbigmpii_la_SOURCES = $(libbigmpi_la_SOURCES)
libbigmpii_la_LDFLAGS = $(libbigmpi_abi_version)
include_HEADERS = src/bigmpi.h src/bigmpi_impl.h
bin_PROGRAMS =
check_PROGRAMS =
TESTS =
XFAIL_TESTS =
MPIEXEC = mpiexec -n 2
TESTS_ENVIRONMENT = $(MPIEXEC)
include test/Makefile.mk
.PHONY: checkprogs
checkprogs: $(check_PROGRAMS)