2006-08-24 21:51:20 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2009-04-24 20:39:33 +04:00
|
|
|
# Copyright (c) 2009 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2009-03-25 16:32:55 +03:00
|
|
|
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
2006-08-24 21:51:20 +04:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2009-04-24 20:39:33 +04:00
|
|
|
EXTRA_DIST = .windows
|
|
|
|
|
2009-03-25 16:32:55 +03:00
|
|
|
dist_pkgdata_DATA = help-odls-process.txt
|
2006-08-24 21:51:20 +04:00
|
|
|
|
|
|
|
sources = \
|
2006-09-15 02:22:34 +04:00
|
|
|
odls_process.h \
|
|
|
|
odls_process_component.c \
|
|
|
|
odls_process_module.c
|
2006-08-24 21:51:20 +04: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).
|
|
|
|
|
2006-09-15 02:22:34 +04:00
|
|
|
if OMPI_BUILD_odls_process_DSO
|
2006-08-24 21:51:20 +04:00
|
|
|
component_noinst =
|
2006-09-15 02:22:34 +04:00
|
|
|
component_install = mca_odls_process.la
|
2006-08-24 21:51:20 +04:00
|
|
|
else
|
2006-09-15 02:22:34 +04:00
|
|
|
component_noinst = libmca_odls_process.la
|
2006-08-24 21:51:20 +04:00
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2007-04-12 15:19:42 +04:00
|
|
|
mcacomponentdir = $(pkglibdir)
|
2006-08-24 21:51:20 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2006-09-15 02:22:34 +04:00
|
|
|
mca_odls_process_la_SOURCES = $(sources)
|
|
|
|
mca_odls_process_la_LDFLAGS = -module -avoid-version
|
2006-08-24 21:51:20 +04:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2006-09-15 02:22:34 +04:00
|
|
|
libmca_odls_process_la_SOURCES =$(sources)
|
|
|
|
libmca_odls_process_la_LDFLAGS = -module -avoid-version
|