2004-01-14 11:38:51 +03:00
|
|
|
#
|
2005-11-05 22:57:48 +03: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 20:39:33 +04:00
|
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
2004-11-28 23:09:25 +03:00
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2014-03-28 22:24:32 +04:00
|
|
|
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
|
2008-08-02 01:14:37 +04:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-14 11:38:51 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-01 14:37:20 +04:00
|
|
|
# This is not quite in the Automake spirit, but we have to do it.
|
|
|
|
# Since the totalview portion of the library must be built with -g, we
|
|
|
|
# must eliminate the CFLAGS that are passed in here by default (which
|
|
|
|
# may already have debugging and/or optimization flags). We use
|
|
|
|
# post-processed forms of the CFLAGS in the library targets down
|
|
|
|
# below.
|
|
|
|
|
2009-10-23 17:00:59 +04:00
|
|
|
CFLAGS = $(CFLAGS_WITHOUT_OPTFLAGS) $(DEBUGGER_CFLAGS)
|
2005-09-01 14:37:20 +04:00
|
|
|
|
2014-03-28 22:24:32 +04:00
|
|
|
include $(top_srcdir)/Makefile.ompi-rules
|
2008-08-02 01:14:37 +04:00
|
|
|
|
|
|
|
man_pages = orterun.1
|
2013-02-28 21:31:47 +04:00
|
|
|
EXTRA_DIST = $(man_pages:.1=.1in)
|
2008-08-02 01:14:37 +04:00
|
|
|
|
2006-04-29 06:16:41 +04:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orterun
|
|
|
|
|
2008-08-07 23:20:40 +04: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
|
2008-03-22 05:04:05 +03:00
|
|
|
|
2014-01-08 02:11:15 +04:00
|
|
|
dist_ompidata_DATA = help-orterun.txt
|
2006-04-29 06:16:41 +04:00
|
|
|
|
2008-03-22 05:04:05 +03:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
2006-03-29 05:04:43 +04:00
|
|
|
|
2008-03-22 05:04:05 +03:00
|
|
|
orterun_SOURCES = \
|
|
|
|
main.c \
|
|
|
|
orterun.c \
|
2010-07-07 03:35:42 +04:00
|
|
|
orterun.h
|
2012-04-06 18:23:13 +04:00
|
|
|
|
2012-12-23 22:13:39 +04:00
|
|
|
orterun_LDADD = $(top_builddir)/orte/libopen-rte.la $(top_builddir)/opal/libopen-pal.la
|
2008-06-19 18:46:10 +04:00
|
|
|
|
2008-08-07 23:20:40 +04:00
|
|
|
distclean-local:
|
2008-08-02 01:14:37 +04:00
|
|
|
rm -f $(man_pages)
|