2004-01-15 04:47:20 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2004-11-22 01:38:40 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# 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.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-15 04:47:20 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 05:54:53 +00:00
|
|
|
|
2004-01-15 04:47:20 +00:00
|
|
|
|
2005-07-02 14:36:36 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src/opal/event
|
2004-02-13 05:38:13 +00:00
|
|
|
|
2004-01-15 04:47:20 +00:00
|
|
|
noinst_LTLIBRARIES = libruntime.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
2005-10-05 13:56:35 +00:00
|
|
|
dist_pkgdata_DATA = help-orte-runtime.txt
|
|
|
|
|
2004-01-15 04:47:20 +00:00
|
|
|
headers = \
|
2005-07-02 14:36:36 +00:00
|
|
|
orte_wait.h \
|
|
|
|
runtime.h \
|
|
|
|
runtime_internal.h \
|
2005-08-10 20:03:20 +00:00
|
|
|
runtime_types.h \
|
|
|
|
orte_setup_hnp.h
|
2004-01-15 04:47:20 +00:00
|
|
|
|
|
|
|
libruntime_la_SOURCES = \
|
|
|
|
$(headers) \
|
2005-07-02 14:36:36 +00:00
|
|
|
orte_abort.c \
|
|
|
|
orte_finalize.c \
|
|
|
|
orte_init.c \
|
2005-08-26 20:13:35 +00:00
|
|
|
orte_params.c \
|
2005-07-02 14:36:36 +00:00
|
|
|
orte_init_stage1.c \
|
|
|
|
orte_init_stage2.c \
|
|
|
|
orte_monitor.c \
|
|
|
|
orte_restart.c \
|
|
|
|
orte_setup_hnp.c \
|
|
|
|
orte_system_finalize.c \
|
|
|
|
orte_system_init.c \
|
|
|
|
orte_universe_exists.c \
|
|
|
|
orte_wait.c
|
2004-01-15 04:47:20 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)/openmpi/orte/runtime
|
|
|
|
orte_HEADERS = $(headers)
|
2004-01-15 04:47:20 +00:00
|
|
|
else
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)
|
2004-01-15 04:47:20 +00:00
|
|
|
endif
|