2007-07-20 05:34:02 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Los Alamos National Security, LLC.
|
|
|
|
# All rights reserved.
|
2010-09-18 03:04:06 +04:00
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2007-07-20 05:34:02 +04:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
AM_CPPFLAGS = $(LTDLINCL)
|
|
|
|
|
|
|
|
# main library setup
|
|
|
|
noinst_LTLIBRARIES = libmca_routed.la
|
|
|
|
libmca_routed_la_SOURCES =
|
|
|
|
|
|
|
|
# local files
|
2009-01-27 22:13:56 +03:00
|
|
|
headers = routed.h routed_types.h
|
2007-07-20 05:34:02 +04:00
|
|
|
libmca_routed_la_SOURCES += $(headers)
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
2014-05-08 06:01:35 +04:00
|
|
|
ortedir = $(orteincludedir)/$(subdir)
|
2010-09-25 02:53:28 +04:00
|
|
|
nobase_orte_HEADERS = $(headers)
|
2007-07-20 05:34:02 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
include base/Makefile.am
|
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f base/static-components.h
|