2004-06-04 02:13:01 +04:00
|
|
|
#
|
2004-11-22 04:38:40 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-06-04 02:13:01 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-07-01 20:25:44 +04:00
|
|
|
# Use the top-level Makefile.options
|
2004-06-04 02:13:01 +04:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
2004-06-04 02:13:01 +04:00
|
|
|
|
|
|
|
SUBDIRS = src
|
|
|
|
|
2004-07-01 20:25:44 +04:00
|
|
|
# Make the output library in this directory, and name it either
|
|
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
|
|
# (for static builds).
|
2004-06-04 02:13:01 +04:00
|
|
|
|
2004-07-01 20:25:44 +04:00
|
|
|
if OMPI_BUILD_ptl_sm_DSO
|
|
|
|
component_noinst =
|
|
|
|
component_install = mca_ptl_sm.la
|
2004-06-04 02:13:01 +04:00
|
|
|
else
|
2004-07-01 20:25:44 +04:00
|
|
|
component_noinst = libmca_ptl_sm.la
|
|
|
|
component_install =
|
2004-06-04 02:13:01 +04:00
|
|
|
endif
|
|
|
|
|
2004-07-01 20:25:44 +04:00
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2004-06-04 02:13:01 +04:00
|
|
|
mca_ptl_sm_la_SOURCES =
|
2004-07-07 16:45:36 +04:00
|
|
|
mca_ptl_sm_la_LIBADD = src/libmca_ptl_sm.la
|
2004-06-04 02:13:01 +04:00
|
|
|
mca_ptl_sm_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
2004-07-01 20:25:44 +04:00
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2004-06-04 02:13:01 +04:00
|
|
|
libmca_ptl_sm_la_SOURCES =
|
|
|
|
libmca_ptl_sm_la_LIBADD = src/libmca_ptl_sm.la
|
|
|
|
libmca_ptl_sm_la_LDFLAGS = -module -avoid-version
|