2004-01-09 11:27:58 +03:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-01-09 22:20:50 +03:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libpmlb.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
fragment.h \
|
|
|
|
header.h \
|
|
|
|
recvfrag.h \
|
|
|
|
request.h \
|
|
|
|
sendfrag.h \
|
|
|
|
sendreq.h
|
|
|
|
|
|
|
|
libpmlb_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
fragment.c \
|
|
|
|
recvfrag.c \
|
|
|
|
request.c \
|
|
|
|
sendfrag.c
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
lamdir = $(includedir)/mfc/mpi/pml/base
|
|
|
|
lam_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
lamdir = $(includedir)
|
|
|
|
endif
|
|
|
|
|