2004-01-14 18:15:17 +03:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Use the top-level LAM Makefile.options
|
|
|
|
|
|
|
|
include $(top_lam_srcdir)/config/Makefile.options
|
|
|
|
|
|
|
|
SUBDIRS = src
|
|
|
|
|
|
|
|
EXTRA_DIST = VERSION
|
|
|
|
|
|
|
|
# According to the MCA spec, we have to make the output library here
|
|
|
|
# in the top-level directory, and it has to be named
|
|
|
|
# liblam_ssi_coll_lam_basic.la
|
|
|
|
|
2004-02-13 06:58:56 +03:00
|
|
|
if LAM_BUILD_ptl_tcp_LOADABLE_MODULE
|
2004-01-14 18:15:17 +03:00
|
|
|
module_noinst =
|
|
|
|
module_install = mca_ptl_tcp.la
|
|
|
|
else
|
2004-03-17 22:43:41 +03:00
|
|
|
module_noinst = libmca_ptl_tcp.la
|
2004-01-14 18:15:17 +03:00
|
|
|
module_install =
|
|
|
|
endif
|
|
|
|
|
|
|
|
mcamoduledir = $(libdir)/lam
|
|
|
|
mcamodule_LTLIBRARIES = $(module_install)
|
|
|
|
mca_ptl_tcp_la_SOURCES =
|
|
|
|
mca_ptl_tcp_la_LIBADD = \
|
|
|
|
src/libmca_ptl_tcp.la \
|
2004-01-15 06:45:01 +03:00
|
|
|
$(LIBLAM_LA)
|
2004-01-14 18:15:17 +03:00
|
|
|
mca_ptl_tcp_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(module_noinst)
|
2004-03-17 22:43:41 +03:00
|
|
|
libmca_ptl_tcp_la_SOURCES =
|
|
|
|
libmca_ptl_tcp_la_LIBADD = src/libmca_ptl_tcp.la
|
|
|
|
libmca_ptl_tcp_la_LDFLAGS = -module -avoid-version
|