1
1

adding the required Makefile.am ... oops

This commit was SVN r838.
Этот коммит содержится в:
Prabhanjan Kambadur 2004-03-08 04:18:38 +00:00
родитель 7ec818d7d9
Коммит c798be5b1e
2 изменённых файлов: 29 добавлений и 1 удалений

Просмотреть файл

@ -22,7 +22,10 @@ libmca_mpi_coll_base_la_SOURCES = \
topo_base_graph_dims_get.c \
topo_base_graph_get.c \
topo_base_graph_neighbors.c \
topo_base_graph_neighbors_count.c
topo_base_graph_neighbors_count.c \
topo_base_open.c \
topo_base_close.c \
topo_base_select.c
# Conditionally install the header files

25
src/mca/mpi/topo/unity/src/Makefile.am Обычный файл
Просмотреть файл

@ -0,0 +1,25 @@
# -*- makefile -*-
#
# $HEADER$
#
include $(top_lam_srcdir)/config/Makefile.options
headers = \
topo_unity.h
noinst_LTLIBRARIES = libmca_topo_unity.la
libmca_topo_unity_la_SOURCES = \
$(headers) \
topo_unity.c \
topo_unity_module.c \
cart_map.c \
graph_map.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
lamdir = $(includedir)/lam/mca/mpi/topo/unity/src/
lam_HEADERS = $(headers)
else
lamdir = $(includedir)
endif