1#
2# Copyright (c) 2004-2007 The Trustees of Indiana University.
3#                         All rights reserved.
4# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
5#                         All rights reserved.
6# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
7#                         University of Stuttgart.  All rights reserved.
8# Copyright (c) 2004-2005 The Regents of the University of California.
9#                         All rights reserved.
10# Copyright (c) 2010-2014 Cisco Systems, Inc.  All rights reserved.
11# Copyright (c) 2017      IBM Corporation.  All rights reserved.
12# $COPYRIGHT$
13#
14# Additional copyrights may follow
15#
16# $HEADER$
17#
18
19sources = \
20        crcp_bkmrk.h \
21        crcp_bkmrk_pml.h \
22        crcp_bkmrk_component.c \
23        crcp_bkmrk_module.c \
24        crcp_bkmrk_pml.c
25
26# Make the output library in this directory, and name it either
27# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
28# (for static builds).
29
30if MCA_BUILD_ompi_crcp_bkmrk_DSO
31component_noinst =
32component_install = mca_crcp_bkmrk.la
33else
34component_noinst = libmca_crcp_bkmrk.la
35component_install =
36endif
37
38mcacomponentdir = $(ompilibdir)
39mcacomponent_LTLIBRARIES = $(component_install)
40mca_crcp_bkmrk_la_SOURCES = $(sources)
41mca_crcp_bkmrk_la_LDFLAGS = -module -avoid-version
42mca_crcp_bkmrk_la_LIBADD = $(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la
43
44noinst_LTLIBRARIES = $(component_noinst)
45libmca_crcp_bkmrk_la_SOURCES = $(sources)
46libmca_crcp_bkmrk_la_LDFLAGS = -module -avoid-version
47