2004-01-09 11:27:58 +03: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-01-09 11:27:58 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-03-07 01:42:59 +03:00
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libmca_topo_base.la
|
2004-03-17 06:58:21 +03:00
|
|
|
|
2004-03-07 01:42:59 +03:00
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libmca_topo_base_la_SOURCES = \
|
2004-03-07 01:42:59 +03:00
|
|
|
$(headers) \
|
|
|
|
topo_base_cart_coords.c \
|
|
|
|
topo_base_cart_create.c \
|
2004-04-17 00:59:36 +04:00
|
|
|
topo_base_cartdim_get.c \
|
2004-03-07 01:42:59 +03:00
|
|
|
topo_base_cart_get.c \
|
|
|
|
topo_base_cart_rank.c \
|
|
|
|
topo_base_cart_shift.c \
|
|
|
|
topo_base_cart_sub.c \
|
2004-07-21 02:42:38 +04:00
|
|
|
topo_base_find_available.c \
|
2004-03-07 01:42:59 +03:00
|
|
|
topo_base_graph_create.c \
|
2004-04-22 00:55:54 +04:00
|
|
|
topo_base_graphdims_get.c \
|
2004-03-07 01:42:59 +03:00
|
|
|
topo_base_graph_get.c \
|
|
|
|
topo_base_graph_neighbors.c \
|
2004-03-08 07:18:38 +03:00
|
|
|
topo_base_graph_neighbors_count.c \
|
|
|
|
topo_base_open.c \
|
|
|
|
topo_base_close.c \
|
2004-07-21 02:42:38 +04:00
|
|
|
topo_base_comm_select.c \
|
|
|
|
topo_base_comm_unselect.c
|
2004-03-07 01:42:59 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:06:47 +04:00
|
|
|
ompidir = $(includedir)/openmpi/ompi/mca/topo/base
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-03-07 01:42:59 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-03-07 01:42:59 +03:00
|
|
|
endif
|
|
|
|
|