2011-09-11 19:02:24 +00:00
|
|
|
#
|
2012-06-15 16:29:21 +00:00
|
|
|
# Copyright (c) 2011-2012 Cisco Systems, Inc. All rights reserved.
|
2016-05-08 10:17:28 -07:00
|
|
|
# Copyright (c) 2016 Intel, Inc. All rights reserved.
|
2011-09-11 19:02:24 +00:00
|
|
|
# $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2011-09-11 19:02:24 +00:00
|
|
|
# Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2011-09-11 19:02:24 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# This is a special component -- its main purpose in life is to have
|
|
|
|
# its configure.m4 add some things to CPPFLAGS, LDFLAGS, and
|
|
|
|
# LIBS. Hence, there's nothing to build here. :-)
|
|
|
|
|
|
|
|
# We only ever build this component statically
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_hwloc_external.la
|
2016-05-08 10:17:28 -07:00
|
|
|
|
2012-06-15 16:29:21 +00:00
|
|
|
libmca_hwloc_external_la_SOURCES = \
|
|
|
|
external.h \
|
|
|
|
hwloc_external_component.c
|
2011-09-11 19:02:24 +00:00
|
|
|
libmca_hwloc_external_la_LDFLAGS = \
|
|
|
|
-module -avoid-version \
|
|
|
|
$(opal_hwloc_external_LDFLAGS)
|
|
|
|
libmca_hwloc_external_la_LIBADD = $(hwloc_external_LIBS) -lhwloc
|
2016-05-08 10:17:28 -07:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
opaldir = $(opalincludedir)/$(subdir)
|
|
|
|
nobase_opal_HEADERS = external.h
|
|
|
|
endif
|