2012-06-19 13:38:42 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2013-02-26 20:44:56 +00:00
|
|
|
# Copyright (c) 2012-2013 Los Alamos National Security, Inc. All rights reserved.
|
2012-06-19 13:38:42 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
sources = \
|
2014-04-29 21:49:23 +00:00
|
|
|
dstore_hash.h \
|
|
|
|
dstore_hash_component.c \
|
|
|
|
dstore_hash.c
|
2012-06-19 13:38:42 +00: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).
|
|
|
|
|
2014-04-29 21:49:23 +00:00
|
|
|
if MCA_BUILD_opal_dstore_hash_DSO
|
2012-06-19 13:38:42 +00:00
|
|
|
component_noinst =
|
2014-04-29 21:49:23 +00:00
|
|
|
component_install = mca_dstore_hash.la
|
2012-06-19 13:38:42 +00:00
|
|
|
else
|
2014-04-29 21:49:23 +00:00
|
|
|
component_noinst = libmca_dstore_hash.la
|
2012-06-19 13:38:42 +00:00
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2014-05-08 02:01:35 +00:00
|
|
|
mcacomponentdir = $(opallibdir)
|
2012-06-19 13:38:42 +00:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2014-04-29 21:49:23 +00:00
|
|
|
mca_dstore_hash_la_SOURCES = $(sources)
|
|
|
|
mca_dstore_hash_la_LDFLAGS = -module -avoid-version
|
|
|
|
mca_dstore_hash_la_LIBADD = $(dstore_hash_LIBS)
|
2012-06-19 13:38:42 +00:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2014-04-29 21:49:23 +00:00
|
|
|
libmca_dstore_hash_la_SOURCES =$(sources)
|
|
|
|
libmca_dstore_hash_la_LDFLAGS = -module -avoid-version
|