3571c3c5bb
- Fix capitolization typos - Make comment more correct / flow better - Use AM_CPPFLAGS, not DEFAULT_INCLUDES - Remove extra "hwloc/" from external hwloc.h specification Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
35 строки
873 B
Makefile
35 строки
873 B
Makefile
#
|
|
# Copyright (c) 2011-2016 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2016 Research Organization for Information Science
|
|
# and Technology (RIST). All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# We do not want -I$(srcdir) in AM_CPPFLAGS, or there can be a
|
|
# conflict between system hwloc.h and opal/mca/hwloc/hwloc.h. So just
|
|
# set only what we need to AM_CPPFLAGS.
|
|
AM_CPPFLAGS = -I$(top_builddir)/opal/include
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_hwloc.la
|
|
libmca_hwloc_la_SOURCES =
|
|
|
|
# local files
|
|
headers = hwloc.h
|
|
libmca_hwloc_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
opaldir = $(opalincludedir)/$(subdir)
|
|
nobase_opal_HEADERS = $(headers)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|