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.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# 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.
|
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.
|
|
|
|
|
|
|
|
CFLAGS = $(CFLAGS_WITHOUT_OPTFLAGS) $(TOTALVIEW_DEBUG_FLAGS)
|
|
|
|
|
2005-07-02 19:06:47 +04:00
|
|
|
libs = \
|
2007-05-04 13:03:37 +04:00
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/orte/libopen-rte.la
|
2004-03-26 07:28:42 +03:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
orterun_SOURCES = \
|
2005-08-31 20:15:59 +04:00
|
|
|
main.c \
|
2005-08-30 21:29:43 +04:00
|
|
|
orterun.c \
|
2005-08-31 20:21:58 +04:00
|
|
|
orterun.h \
|
2005-08-31 15:01:28 +04:00
|
|
|
totalview.c \
|
|
|
|
totalview.h
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
orterun_LDADD = $(libs)
|
|
|
|
orterun_DEPENDENCIES = $(libs)
|
2005-03-18 06:43:59 +03:00
|
|
|
|
2006-04-29 06:16:41 +04:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orterun
|
|
|
|
|
|
|
|
dist_pkgdata_DATA = help-orterun.txt
|
|
|
|
|
2006-03-29 05:04:43 +04:00
|
|
|
# AM 1.9.6 seems to have a bug in it's dependencies for install-man if
|
|
|
|
#dist_ and nodist_ are used, so explicitly add to EXTRA_DIST...
|
2006-07-01 02:01:56 +04:00
|
|
|
man_MANS = orterun.1
|
2006-03-29 05:04:43 +04:00
|
|
|
EXTRA_DIST = orterun.1
|
|
|
|
|
2006-04-29 06:16:41 +04:00
|
|
|
endif
|