2008-07-09 00:04:39 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2008 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2009 High Performance Computing Center Stuttgart,
|
2009-04-24 20:39:33 +04:00
|
|
|
# University of Stuttgart. All rights reserved.
|
2015-01-30 00:59:24 +03:00
|
|
|
# Copyright (c) 2010-2015 Cisco Systems, Inc. All rights reserved.
|
2008-07-09 00:04:39 +04:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2008-07-09 00:04:39 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2008-07-09 00:04:39 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2014-05-08 18:32:24 +04:00
|
|
|
dist_opaldata_DATA = help-opal-crs-none.txt
|
2008-07-09 00:04:39 +04:00
|
|
|
|
|
|
|
sources = \
|
|
|
|
crs_none.h \
|
|
|
|
crs_none_component.c \
|
|
|
|
crs_none_module.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).
|
|
|
|
|
2010-09-18 03:04:06 +04:00
|
|
|
if MCA_BUILD_opal_crs_none_DSO
|
2008-07-09 00:04:39 +04:00
|
|
|
component_noinst =
|
|
|
|
component_install = mca_crs_none.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_crs_none.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2014-05-08 06:01:35 +04:00
|
|
|
mcacomponentdir = $(opallibdir)
|
2008-07-09 00:04:39 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_crs_none_la_SOURCES = $(sources)
|
|
|
|
mca_crs_none_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
|
|
libmca_crs_none_la_SOURCES = $(sources)
|
|
|
|
libmca_crs_none_la_LDFLAGS = -module -avoid-version
|