2004-08-17 22:24:17 +00:00
|
|
|
#
|
2004-11-22 01:38:40 +00: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 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-08-17 22:24:17 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
noinst_LTLIBRARIES = libmca_rmaps_base.la
|
2004-08-17 22:24:17 +00:00
|
|
|
|
|
|
|
# For VPATH builds, have to specify where static-modules.h will be found
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
# Library
|
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
libmca_rmaps_base_la_SOURCES = \
|
2004-08-17 22:24:17 +00:00
|
|
|
$(headers) \
|
2005-03-14 20:57:21 +00:00
|
|
|
rmaps_base_close.c \
|
2005-03-19 22:04:32 +00:00
|
|
|
rmaps_base_map.h \
|
2005-03-14 20:57:21 +00:00
|
|
|
rmaps_base_map.c \
|
|
|
|
rmaps_base_open.c \
|
|
|
|
rmaps_base_select.c
|
|
|
|
|
2004-08-17 22:24:17 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)/openmpi/orte/mca/rmaps/base
|
|
|
|
orte_HEADERS = $(headers)
|
2004-08-17 22:24:17 +00:00
|
|
|
else
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)
|
2004-08-17 22:24:17 +00:00
|
|
|
endif
|
2005-07-08 13:54:12 +00:00
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|