e96b5f486f
All interface APIs for accessing the info remain unchanged in opal/util/if.c. This has been tested on Mac, Linux, and NetBSD. Nobody else seemed interested in testing it, so there may be some future problems revealed as people try it on other OSs. This commit was SVN r23743.
33 строки
576 B
Makefile
33 строки
576 B
Makefile
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_if.la
|
|
libmca_if_la_SOURCES =
|
|
|
|
# header setup
|
|
nobase_opal_HEADERS =
|
|
|
|
# local files
|
|
headers = if.h
|
|
libmca_if_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
nobase_opal_HEADERS += $(headers)
|
|
opaldir = $(includedir)/openmpi/opal/mca/if
|
|
else
|
|
opaldir = $(includedir)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|