2007-03-17 02:11:45 +03:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2007-03-17 02:11:45 +03:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2008-08-02 01:14:37 +04:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2014-03-28 22:24:32 +04:00
|
|
|
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
|
2007-03-17 02:11:45 +03:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2007-03-17 02:11:45 +03:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2007-03-17 02:11:45 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2014-03-28 22:24:32 +04:00
|
|
|
include $(top_srcdir)/Makefile.ompi-rules
|
2008-08-02 01:14:37 +04:00
|
|
|
|
2007-03-17 02:11:45 +03:00
|
|
|
# main library setup
|
|
|
|
noinst_LTLIBRARIES = libmca_snapc.la
|
|
|
|
libmca_snapc_la_SOURCES =
|
|
|
|
|
|
|
|
# local files
|
|
|
|
headers = snapc.h
|
|
|
|
libmca_snapc_la_SOURCES += $(headers)
|
|
|
|
|
|
|
|
# Manual pages
|
2008-08-07 23:20:40 +04:00
|
|
|
nodist_man_MANS = orte_snapc.7
|
|
|
|
EXTRA_DIST = $(nodist_man_MANS:.7=.7in)
|
|
|
|
|
|
|
|
# Ensure that the man pages are rebuilt if the opal_config.h file
|
|
|
|
# changes; a "good enough" way to know if configure was run again (and
|
|
|
|
# therefore the release date or version may have changed)
|
|
|
|
$(nodist_man_MANS): $(top_builddir)/opal/include/opal_config.h
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
# 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-03-17 02:11:45 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
include base/Makefile.am
|
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f base/static-components.h
|
2008-08-07 23:20:40 +04:00
|
|
|
rm -f $(nodist_man_MANS)
|