2009-11-30 23:11:25 +00:00
|
|
|
#
|
2016-12-21 09:06:24 -08:00
|
|
|
# Copyright (c) 2011-2016 Cisco Systems, Inc. All rights reserved.
|
2016-12-21 11:58:10 +09:00
|
|
|
# Copyright (c) 2016 Research Organization for Information Science
|
|
|
|
# and Technology (RIST). All rights reserved.
|
2009-11-30 23:11:25 +00:00
|
|
|
# $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2009-11-30 23:11:25 +00:00
|
|
|
# Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2009-11-30 23:11:25 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2016-12-21 09:06:24 -08:00
|
|
|
# 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
|
2016-12-21 11:58:10 +09:00
|
|
|
|
2009-11-30 23:11:25 +00:00
|
|
|
# main library setup
|
2011-09-11 19:02:24 +00:00
|
|
|
noinst_LTLIBRARIES = libmca_hwloc.la
|
|
|
|
libmca_hwloc_la_SOURCES =
|
2009-11-30 23:11:25 +00:00
|
|
|
|
|
|
|
# local files
|
2011-09-11 19:02:24 +00:00
|
|
|
headers = hwloc.h
|
|
|
|
libmca_hwloc_la_SOURCES += $(headers)
|
2009-11-30 23:11:25 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
2014-05-08 02:01:35 +00:00
|
|
|
opaldir = $(opalincludedir)/$(subdir)
|
2010-09-24 22:53:28 +00:00
|
|
|
nobase_opal_HEADERS = $(headers)
|
2009-11-30 23:11:25 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
include base/Makefile.am
|
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f base/static-components.h
|