2004-01-11 21:31:52 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# 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 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-11 21:31:52 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-08-02 00:24:22 +00:00
|
|
|
# Need this so that the base knows where to load dynamic components from
|
2004-06-17 19:25:08 +00:00
|
|
|
# (by default)
|
|
|
|
|
2004-08-31 09:49:56 +00:00
|
|
|
AM_CPPFLAGS = \
|
2005-12-19 03:10:23 +00:00
|
|
|
$(OPAL_LTDL_CPPFLAGS) \
|
2004-08-31 09:49:56 +00:00
|
|
|
-DOMPI_PKGLIBDIR=\"$(pkglibdir)\" \
|
2005-09-01 12:16:36 +00:00
|
|
|
-DOMPI_SYSCONFDIR=\"$(sysconfdir)\"
|
2004-08-31 09:49:56 +00:00
|
|
|
AM_LFLAGS = -Pmca_base_yy
|
|
|
|
LEX_OUTPUT_ROOT = lex.mca_base_yy
|
2004-01-22 00:36:42 +00:00
|
|
|
|
2004-03-17 19:06:06 +00:00
|
|
|
noinst_LTLIBRARIES = libmca_base.la
|
2004-01-11 21:31:52 +00:00
|
|
|
|
2005-09-30 13:32:39 +00:00
|
|
|
dist_pkgdata_DATA = help-mca-base.txt help-mca-param.txt
|
2004-09-05 16:05:37 +00:00
|
|
|
|
2004-01-11 21:31:52 +00:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-01-18 16:09:36 +00:00
|
|
|
base.h \
|
2005-09-01 12:16:36 +00:00
|
|
|
mca_base_component_repository.h \
|
2004-06-15 20:35:30 +00:00
|
|
|
mca_base_msgbuf.h \
|
2004-08-02 00:24:22 +00:00
|
|
|
mca_base_msgbuf_internal.h \
|
|
|
|
mca_base_param.h \
|
2004-08-31 09:49:56 +00:00
|
|
|
mca_base_param_internal.h \
|
|
|
|
mca_base_parse_paramfile_lex.h
|
|
|
|
|
2004-01-11 21:31:52 +00:00
|
|
|
# Library
|
|
|
|
|
2004-03-17 19:06:06 +00:00
|
|
|
libmca_base_la_SOURCES = \
|
2004-01-17 23:07:40 +00:00
|
|
|
$(headers) \
|
|
|
|
mca_base_close.c \
|
|
|
|
mca_base_cmd_line.c \
|
2004-08-02 00:24:22 +00: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 \
|
|
|
|
mca_base_list.c \
|
|
|
|
mca_base_msgbuf.c \
|
2004-01-17 23:07:40 +00:00
|
|
|
mca_base_open.c \
|
2004-08-31 09:49:56 +00:00
|
|
|
mca_base_param.c \
|
|
|
|
mca_base_parse_paramfile.c \
|
|
|
|
mca_base_parse_paramfile_lex.l
|
2004-01-13 22:14:08 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 14:08:19 +00:00
|
|
|
ompidir = $(includedir)/openmpi/opal/mca/base
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-13 22:14:08 +00:00
|
|
|
else
|
2004-06-07 15:33:53 +00:00
|
|
|
ompidir = $(includedir)
|
2004-01-13 22:14:08 +00:00
|
|
|
endif
|