2005-01-21 20:49:14 +03:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
|
|
|
# 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.
|
2005-01-21 20:49:14 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2005-01-21 20:49:14 +03:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_errmgr_base.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
# Library
|
|
|
|
|
|
|
|
libmca_errmgr_base_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
errmgr_base_close.c \
|
|
|
|
errmgr_base_select.c \
|
|
|
|
errmgr_base_open.c \
|
2005-03-14 23:57:21 +03:00
|
|
|
errmgr_base_fns.c
|
2005-01-21 20:49:14 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)/openmpi/orte/mca/errmgr/base
|
|
|
|
orte_HEADERS = $(headers)
|
2005-01-21 20:49:14 +03:00
|
|
|
else
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)
|
2005-01-21 20:49:14 +03:00
|
|
|
endif
|
2005-07-08 17:54:12 +04:00
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|