1
1
openmpi/opal/mca/pmix/pmix120/Makefile.am
Ralph Castain 810f2446b7 Add pmix120 component, update the error handling functions in the PMIx API.
Update the configure logic for the new pmix120 component

ckpt

Get the pmix120 component to work - still not really registering or handling notifications, but infrastructure now operates

Cleanup some of the symbol scopes, and provide a more comprehensive rename.h file. Will pretty it up later - let's see how this works

Cleanup the rename files to use the pretty macros
2015-12-28 23:15:44 +09:00

52 строки
1.6 KiB
Makefile

#
# Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2015 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
EXTRA_DIST = autogen.subdirs
SUBDIRS = pmix
sources = \
pmix120.h \
pmix_pmix120_component.c \
pmix_pmix120.c \
pmix120_client.c \
pmix120_server_south.c \
pmix120_server_north.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_opal_pmix_pmix120_DSO
component_noinst =
component_install = mca_pmix_pmix120.la
else
component_noinst = libmca_pmix_pmix120.la
component_install =
endif
mcacomponentdir = $(opallibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_pmix_pmix120_la_SOURCES = $(sources)
mca_pmix_pmix120_la_CFLAGS = $(opal_pmix_pmix120_CFLAGS)
mca_pmix_pmix120_la_CPPFLAGS = \
-I$(srcdir)/pmix/include $(opal_pmix_pmix120_CPPFLAGS)
mca_pmix_pmix120_la_LDFLAGS = -module -avoid-version $(opal_pmix_pmix120_LDFLAGS)
mca_pmix_pmix120_la_LIBADD = $(opal_pmix_pmix120_LIBS)
noinst_LTLIBRARIES = $(component_noinst)
libmca_pmix_pmix120_la_SOURCES =$(sources)
libmca_pmix_pmix120_la_CFLAGS = $(opal_pmix_pmix120_CFLAGS)
libmca_pmix_pmix120_la_CPPFLAGS = -I$(srcdir)/pmix/include $(opal_pmix_pmix120_CPPFLAGS)
libmca_pmix_pmix120_la_LDFLAGS = -module -avoid-version $(opal_pmix_pmix120_LDFLAGS)
libmca_pmix_pmix120_la_LIBADD = $(opal_pmix_pmix120_LIBS)