2004-01-10 07:44:43 +03:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-02-01 00:43:26 +03:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_oob_base.la
|
|
|
|
|
2004-03-17 06:58:21 +03:00
|
|
|
# For VPATH builds, have to specify where static-modules.h will be found
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src
|
|
|
|
|
2004-02-01 00:43:26 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
# Library
|
|
|
|
|
|
|
|
libmca_oob_base_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
oob_base_close.c \
|
|
|
|
oob_base_open.c \
|
2004-07-01 18:49:54 +04:00
|
|
|
oob_base_init.c \
|
|
|
|
oob_base_send.c \
|
|
|
|
oob_base_send_nb.c \
|
|
|
|
oob_base_recv.c \
|
|
|
|
oob_base_recv_nb.c \
|
|
|
|
oob_base_pack.c
|
2004-02-01 00:43:26 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-06-17 22:21:08 +04:00
|
|
|
ompidir = $(includedir)/openmpi/mca/oob/base
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-02-01 00:43:26 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-02-01 00:43:26 +03:00
|
|
|
endif
|