2004-08-18 02:24:17 +04:00
|
|
|
#
|
2004-11-22 04:38:40 +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.
|
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-08-18 02:24:17 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
noinst_LTLIBRARIES = libmca_ras_base.la
|
2004-08-18 02:24:17 +04:00
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
# Library
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
libmca_ras_base_la_SOURCES = \
|
2004-08-18 02:24:17 +04:00
|
|
|
$(headers) \
|
2005-03-14 23:57:21 +03:00
|
|
|
ras_base_alloc.c \
|
2005-10-08 02:24:52 +04:00
|
|
|
ras_base_allocate.c \
|
2005-03-14 23:57:21 +03:00
|
|
|
ras_base_close.c \
|
2005-10-08 02:24:52 +04:00
|
|
|
ras_base_find_available.c \
|
2005-03-20 01:04:32 +03:00
|
|
|
ras_base_node.h \
|
2005-03-14 23:57:21 +03:00
|
|
|
ras_base_node.c \
|
2005-10-08 02:24:52 +04:00
|
|
|
ras_base_open.c
|
2004-08-18 02:24:17 +04:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)/openmpi/orte/mca/ras/base
|
|
|
|
orte_HEADERS = $(headers)
|
2004-08-18 02:24:17 +04:00
|
|
|
else
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)
|
2004-08-18 02:24:17 +04:00
|
|
|
endif
|
2005-07-08 17:54:12 +04:00
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|