2004-01-12 00:31:52 +03:00
|
|
|
#
|
2008-05-06 22:08:45 +04:00
|
|
|
# Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-12 00:31:52 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
# Need this so that the base knows where to load dynamic components from
|
2004-06-17 23:25:08 +04:00
|
|
|
# (by default)
|
|
|
|
|
2004-08-31 13:49:56 +04:00
|
|
|
AM_CPPFLAGS = \
|
2007-05-15 08:23:48 +04:00
|
|
|
$(LTDLINCL)
|
2004-01-22 03:36:42 +03:00
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libmca_base.la
|
2004-01-12 00:31:52 +03:00
|
|
|
|
2005-09-30 17:32:39 +04:00
|
|
|
dist_pkgdata_DATA = help-mca-base.txt help-mca-param.txt
|
2004-09-05 20:05:37 +04:00
|
|
|
|
2004-01-12 00:31:52 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-01-18 19:09:36 +03:00
|
|
|
base.h \
|
2005-09-01 16:16:36 +04:00
|
|
|
mca_base_component_repository.h \
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_base_param.h \
|
2006-01-16 04:48:03 +03:00
|
|
|
mca_base_param_internal.h
|
2004-08-31 13:49:56 +04:00
|
|
|
|
2004-01-12 00:31:52 +03:00
|
|
|
# Library
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libmca_base_la_SOURCES = \
|
2004-01-18 02:07:40 +03:00
|
|
|
$(headers) \
|
|
|
|
mca_base_close.c \
|
|
|
|
mca_base_cmd_line.c \
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_base_component_compare.c \
|
|
|
|
mca_base_component_find.c \
|
|
|
|
mca_base_component_repository.c \
|
|
|
|
mca_base_components_open.c \
|
|
|
|
mca_base_components_close.c \
|
2008-05-06 22:08:45 +04:00
|
|
|
mca_base_components_select.c \
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_base_list.c \
|
2004-01-18 02:07:40 +03:00
|
|
|
mca_base_open.c \
|
2004-08-31 13:49:56 +04:00
|
|
|
mca_base_param.c \
|
2006-01-16 04:48:03 +03:00
|
|
|
mca_base_parse_paramfile.c
|
2004-01-14 01:14:08 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 18:08:19 +04:00
|
|
|
ompidir = $(includedir)/openmpi/opal/mca/base
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-14 01:14:08 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-01-14 01:14:08 +03:00
|
|
|
endif
|