2004-01-19 05:41:06 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# Copyright (c) 2004-2005 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.
|
2009-04-24 16:39:33 +00:00
|
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
2004-11-28 20:09:25 +00:00
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2014-03-28 18:24:32 +00:00
|
|
|
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
|
2008-08-01 21:14:37 +00:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2012-06-28 18:23:34 +00:00
|
|
|
# Copyright (c) 2012 Los Alamos National Security, LLC.
|
|
|
|
# All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-19 05:41:06 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2009-06-30 21:41:28 +00:00
|
|
|
AM_CFLAGS = \
|
2010-11-12 23:22:11 +00:00
|
|
|
-DOPAL_CONFIGURE_USER="\"@OPAL_CONFIGURE_USER@\"" \
|
|
|
|
-DOPAL_CONFIGURE_HOST="\"@OPAL_CONFIGURE_HOST@\"" \
|
|
|
|
-DOPAL_CONFIGURE_DATE="\"@OPAL_CONFIGURE_DATE@\"" \
|
2005-04-07 20:13:41 +00:00
|
|
|
-DOMPI_BUILD_USER="\"$$USER\"" \
|
|
|
|
-DOMPI_BUILD_HOST="\"`hostname`\"" \
|
|
|
|
-DOMPI_BUILD_DATE="\"`date`\"" \
|
2004-06-17 13:29:46 +00:00
|
|
|
-DOMPI_BUILD_CFLAGS="\"@CFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_CPPFLAGS="\"@CPPFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_CXXFLAGS="\"@CXXFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_CXXCPPFLAGS="\"@CXXCPPFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_FFLAGS="\"@FFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_FCFLAGS="\"@FCFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_LDFLAGS="\"@LDFLAGS@\"" \
|
2004-08-07 04:20:28 +00:00
|
|
|
-DOMPI_BUILD_LIBS="\"@LIBS@\"" \
|
2009-05-06 20:11:28 +00:00
|
|
|
-DOPAL_CC_ABSOLUTE="\"@OPAL_CC_ABSOLUTE@\"" \
|
2012-04-27 01:11:26 +00:00
|
|
|
-DOMPI_CXX_ABSOLUTE="\"@OMPI_CXX_ABSOLUTE@\""
|
2004-01-19 05:41:06 +00:00
|
|
|
|
2014-03-28 18:24:32 +00:00
|
|
|
include $(top_srcdir)/Makefile.ompi-rules
|
2008-08-01 21:14:37 +00:00
|
|
|
|
|
|
|
man_pages = ompi_info.1
|
2013-02-28 17:31:47 +00:00
|
|
|
EXTRA_DIST = $(man_pages:.1=.1in)
|
2008-08-01 21:14:37 +00:00
|
|
|
|
2014-05-05 21:43:05 +00:00
|
|
|
if OPAL_INSTALL_BINARIES
|
2006-04-29 02:16:41 +00:00
|
|
|
|
2008-03-22 02:04:05 +00:00
|
|
|
bin_PROGRAMS = ompi_info
|
|
|
|
|
2008-08-07 19:20:40 +00:00
|
|
|
nodist_man_MANS = $(man_pages)
|
|
|
|
|
|
|
|
# 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
|
2006-04-29 02:16:41 +00:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_info_SOURCES = \
|
|
|
|
ompi_info.h \
|
2009-06-30 21:41:28 +00:00
|
|
|
ompi_info.c \
|
2013-10-12 19:03:32 +00:00
|
|
|
param.c
|
2013-02-12 17:45:27 +00:00
|
|
|
|
2013-01-27 23:25:10 +00:00
|
|
|
ompi_info_LDADD = $(top_builddir)/ompi/libmpi.la
|
|
|
|
if OMPI_RTE_ORTE
|
|
|
|
ompi_info_LDADD += $(top_builddir)/orte/libopen-rte.la
|
|
|
|
endif
|
|
|
|
ompi_info_LDADD += $(top_builddir)/opal/libopen-pal.la
|
2007-07-02 06:12:02 +00:00
|
|
|
|
2004-01-19 05:41:06 +00:00
|
|
|
clean-local:
|
2012-02-13 22:13:38 +00:00
|
|
|
test -z "$(OMPI_CXX_TEMPLATE_REPOSITORY)" || rm -rf $(OMPI_CXX_TEMPLATE_REPOSITORY)
|
2008-08-01 21:14:37 +00:00
|
|
|
|
2008-08-07 19:20:40 +00:00
|
|
|
distclean-local:
|
2008-08-01 21:14:37 +00:00
|
|
|
rm -f $(man_pages)
|