2004-03-08 04:18:38 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. 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-03-08 04:18:38 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2007-05-15 04:23:48 +00:00
|
|
|
AM_CPPFLAGS = $(LTDLINCL)
|
2005-12-19 03:10:23 +00:00
|
|
|
|
2005-11-20 01:03:01 +00:00
|
|
|
# main library setup
|
|
|
|
noinst_LTLIBRARIES = libmca_btl.la
|
|
|
|
libmca_btl_la_SOURCES =
|
2005-09-07 05:54:53 +00:00
|
|
|
|
2005-11-20 01:03:01 +00:00
|
|
|
# header setup
|
2005-11-20 07:41:09 +00:00
|
|
|
nobase_ompi_HEADERS =
|
2005-05-23 22:06:50 +00:00
|
|
|
|
2005-11-20 01:03:01 +00:00
|
|
|
# local files
|
2005-06-30 05:50:55 +00:00
|
|
|
headers = btl.h
|
2005-11-20 01:03:01 +00:00
|
|
|
libmca_btl_la_SOURCES += $(headers)
|
2005-05-23 22:06:50 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-11-20 01:03:01 +00:00
|
|
|
nobase_ompi_HEADERS += $(headers)
|
2005-12-08 00:54:44 +00:00
|
|
|
ompidir = $(includedir)/openmpi/ompi/mca/btl
|
2005-11-20 07:41:09 +00:00
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
2005-05-23 22:06:50 +00:00
|
|
|
endif
|
2005-11-20 01:03:01 +00:00
|
|
|
|
|
|
|
include base/Makefile.am
|
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f base/static-components.h
|