1
1
openmpi/orte/mca/schizo/ompi/Makefile.am

38 строки
1007 B
Makefile
Исходник Обычный вид История

2015-01-25 20:16:45 -08:00
#
# Copyright (c) 2015 Intel, Inc. All rights reserved.
# Copyright (c) 2017 IBM Corporation. All rights reserved.
2015-01-25 20:16:45 -08:00
# $COPYRIGHT$
2015-06-23 20:59:57 -07:00
#
2015-01-25 20:16:45 -08:00
# Additional copyrights may follow
2015-06-23 20:59:57 -07:00
#
2015-01-25 20:16:45 -08:00
# $HEADER$
#
sources = \
schizo_ompi_component.c \
schizo_ompi.h \
schizo_ompi.c
2015-01-25 20:16:45 -08: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).
if MCA_BUILD_orte_schizo_ompi_DSO
2015-01-25 20:16:45 -08:00
component_noinst =
component_install = mca_schizo_ompi.la
2015-01-25 20:16:45 -08:00
else
component_noinst = libmca_schizo_ompi.la
2015-01-25 20:16:45 -08:00
component_install =
endif
mcacomponentdir = $(ortelibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_schizo_ompi_la_SOURCES = $(sources)
mca_schizo_ompi_la_LDFLAGS = -module -avoid-version
mca_schizo_ompi_la_LIBADD = $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la
2015-01-25 20:16:45 -08:00
noinst_LTLIBRARIES = $(component_noinst)
libmca_schizo_ompi_la_SOURCES = $(sources)
libmca_schizo_ompi_la_LDFLAGS = -module -avoid-version
2015-01-25 20:16:45 -08:00