2004-01-14 08:38:51 +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.
|
2009-10-23 13:00:59 +00:00
|
|
|
# Copyright (c) 2008-2009 Cisco Systems, Inc. All rights reserved.
|
2008-08-01 21:14:37 +00:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-14 08:38:51 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-01 10:37:20 +00: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 13:00:59 +00:00
|
|
|
CFLAGS = $(CFLAGS_WITHOUT_OPTFLAGS) $(DEBUGGER_CFLAGS)
|
2005-09-01 10:37:20 +00:00
|
|
|
|
2008-08-01 21:14:37 +00:00
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
|
|
|
|
man_pages = orterun.1
|
2013-02-28 17:31:47 +00:00
|
|
|
EXTRA_DIST = $(man_pages:.1=.1in)
|
2008-08-01 21:14:37 +00:00
|
|
|
|
2006-04-29 02:16:41 +00:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orterun
|
|
|
|
|
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
|
2008-03-22 02:04:05 +00:00
|
|
|
|
2006-04-29 02:16:41 +00:00
|
|
|
dist_pkgdata_DATA = help-orterun.txt
|
|
|
|
|
2008-03-22 02:04:05 +00:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
2006-03-29 01:04:43 +00:00
|
|
|
|
2008-03-22 02:04:05 +00:00
|
|
|
orterun_SOURCES = \
|
|
|
|
main.c \
|
|
|
|
orterun.c \
|
2010-07-06 23:35:42 +00:00
|
|
|
orterun.h
|
2012-04-06 14:23:13 +00:00
|
|
|
|
2012-12-23 18:13:39 +00:00
|
|
|
orterun_LDADD = $(top_builddir)/orte/libopen-rte.la $(top_builddir)/opal/libopen-pal.la
|
2008-06-19 14:46:10 +00:00
|
|
|
|
2008-08-07 19:20:40 +00:00
|
|
|
distclean-local:
|
2008-08-01 21:14:37 +00:00
|
|
|
rm -f $(man_pages)
|