2013-07-01 17:47:44 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2011-2013 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
|
|
|
# Copyright (c) 2011-2013 INRIA. All rights reserved.
|
|
|
|
# Copyright (c) 2011-2013 Université Bordeaux 1
|
2015-07-22 09:20:43 -04:00
|
|
|
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
|
2013-07-01 17:47:44 +00:00
|
|
|
# $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2013-07-01 17:47:44 +00:00
|
|
|
# Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2013-07-01 17:47:44 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
sources = \
|
|
|
|
topo_basic.h \
|
|
|
|
topo_basic_component.c
|
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
|
|
|
if MCA_BUILD_ompi_topo_basic_DSO
|
|
|
|
lib =
|
2015-06-23 20:59:57 -07:00
|
|
|
lib_sources =
|
2013-07-01 17:47:44 +00:00
|
|
|
component = mca_topo_basic.la
|
|
|
|
component_sources = $(sources)
|
|
|
|
else
|
|
|
|
lib = libmca_topo_basic.la
|
|
|
|
lib_sources = $(sources)
|
|
|
|
component =
|
|
|
|
component_sources =
|
|
|
|
endif
|
|
|
|
|
2014-01-07 22:11:15 +00:00
|
|
|
mcacomponentdir = $(ompilibdir)
|
2013-07-01 17:47:44 +00:00
|
|
|
mcacomponent_LTLIBRARIES = $(component)
|
|
|
|
mca_topo_basic_la_SOURCES = $(component_sources)
|
|
|
|
mca_topo_basic_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(lib)
|
|
|
|
libmca_topo_basic_la_SOURCES = $(lib_sources)
|
|
|
|
libmca_topo_basic_la_LDFLAGS = -module -avoid-version
|
|
|
|
|