2004-09-09 01:21:14 +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-09-09 01:21:14 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2004-09-09 01:21:14 +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).
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
if OMPI_BUILD_ras_host_DSO
|
2004-09-09 01:21:14 +04:00
|
|
|
component_noinst =
|
2005-03-14 23:57:21 +03:00
|
|
|
component_install = mca_ras_host.la
|
2004-09-09 01:21:14 +04:00
|
|
|
else
|
2005-03-14 23:57:21 +03:00
|
|
|
component_noinst = libmca_ras_host.la
|
2004-09-09 01:21:14 +04:00
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
host_SOURCES = \
|
|
|
|
ras_host.c \
|
|
|
|
ras_host.h \
|
|
|
|
ras_host_component.c
|
|
|
|
|
2004-09-09 01:21:14 +04:00
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2005-03-14 23:57:21 +03:00
|
|
|
mca_ras_host_la_SOURCES = $(host_SOURCES)
|
2005-09-22 16:28:54 +04:00
|
|
|
mca_ras_host_la_LIBADD = \
|
|
|
|
$(top_ompi_builddir)/orte/liborte.la \
|
|
|
|
$(top_ompi_builddir)/opal/libopal.la
|
2005-03-14 23:57:21 +03:00
|
|
|
mca_ras_host_la_LDFLAGS = -module -avoid-version
|
2004-09-09 01:21:14 +04:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2005-03-14 23:57:21 +03:00
|
|
|
libmca_ras_host_la_SOURCES = $(host_SOURCES)
|
|
|
|
libmca_ras_host_la_LIBADD =
|
|
|
|
libmca_ras_host_la_LDFLAGS = -module -avoid-version
|