828af95be8
NOTE: This build system does not work with the current autogen.sh. Modified one is under heavy testing to make sure it does not have side effects This commit was SVN r16110.
40 строки
890 B
Makefile
40 строки
890 B
Makefile
#
|
|
# Copyright (c) 2004-2007 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# iterate trough the components
|
|
SUBDIRS= $(MCA_vprotocol_ALL_SUBDIRS)
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_vprotocol.la
|
|
libmca_vprotocol_la_SOURCES =
|
|
|
|
# header setup
|
|
nobase_ompi_HEADERS =
|
|
nobase_nodist_ompi_HEADERS =
|
|
|
|
# local files
|
|
headers = vprotocol.h
|
|
libmca_vprotocol_la_SOURCES += $(headers) $(nodist_headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
nobase_ompi_HEADERS += $(headers)
|
|
nobase_nodist_ompi_HEADERS += $(nodist_headers)
|
|
ompidir = $(includedir)/openmpi/ompi/mca/vprotocol
|
|
else
|
|
ompidir = $(includedir)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|