2004-01-09 08:27:58 +00:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-01-11 00:22:24 +00:00
|
|
|
|
2004-01-14 03:42:02 +00:00
|
|
|
noinst_LTLIBRARIES = libmca_mpi_ptl_base.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-01-30 03:55:39 +00:00
|
|
|
base.h \
|
2004-01-14 15:57:54 +00:00
|
|
|
ptl_base_comm.h \
|
2004-01-14 03:42:02 +00:00
|
|
|
ptl_base_fragment.h \
|
|
|
|
ptl_base_header.h \
|
|
|
|
ptl_base_match.h \
|
|
|
|
ptl_base_recvfrag.h \
|
|
|
|
ptl_base_sendfrag.h \
|
|
|
|
ptl_base_sendreq.h
|
|
|
|
|
|
|
|
libmca_mpi_ptl_base_la_SOURCES = \
|
|
|
|
$(headers) \
|
2004-01-29 02:49:32 +00:00
|
|
|
ptl_base_close.c \
|
2004-01-14 15:57:54 +00:00
|
|
|
ptl_base_comm.c \
|
2004-01-14 03:42:02 +00:00
|
|
|
ptl_base_fragment.c \
|
|
|
|
ptl_base_match.c \
|
2004-01-29 02:49:32 +00:00
|
|
|
ptl_base_open.c \
|
2004-01-14 03:42:02 +00:00
|
|
|
ptl_base_recvfrag.c \
|
|
|
|
ptl_base_recvreq.c \
|
2004-01-30 03:55:39 +00:00
|
|
|
ptl_base_select.c \
|
2004-01-14 03:42:02 +00:00
|
|
|
ptl_base_sendfrag.c \
|
|
|
|
ptl_base_sendreq.c
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
lamdir = $(includedir)/mca/mpi/ptl/base
|
|
|
|
lam_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
lamdir = $(includedir)
|
|
|
|
endif
|
2004-01-11 00:22:24 +00:00
|
|
|
|