
http://www.open-mpi.org/community/lists/devel/2014/04/14496.php Revamp the opal database framework, including renaming it to "dstore" to reflect that it isn't a "database". Move the "db" framework to ORTE for now, soon to move to ORCM This commit was SVN r31557.
34 строки
626 B
Makefile
34 строки
626 B
Makefile
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AM_CPPFLAGS = $(LTDLINCL)
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_db.la
|
|
libmca_db_la_SOURCES =
|
|
|
|
# pkgdata setup
|
|
dist_ompidata_DATA =
|
|
|
|
# local files
|
|
headers = db.h
|
|
libmca_db_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
ortedir = $(ompiincludedir)/$(subdir)
|
|
nobase_orte_HEADERS = $(headers)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|