2004-01-15 07:47:20 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2004-11-22 04:38:40 +03: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 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-15 07:47:20 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2004-01-15 07:47:20 +03:00
|
|
|
|
2005-07-02 18:36:36 +04:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src/opal/event
|
2004-02-13 08:38:13 +03:00
|
|
|
|
2004-01-15 07:47:20 +03:00
|
|
|
noinst_LTLIBRARIES = libruntime.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2005-07-02 18:36:36 +04:00
|
|
|
orte_wait.h \
|
|
|
|
runtime.h \
|
|
|
|
runtime_internal.h \
|
2005-08-11 00:03:20 +04:00
|
|
|
runtime_types.h \
|
|
|
|
orte_setup_hnp.h
|
2004-01-15 07:47:20 +03:00
|
|
|
|
|
|
|
libruntime_la_SOURCES = \
|
|
|
|
$(headers) \
|
2005-07-02 18:36:36 +04:00
|
|
|
orte_abort.c \
|
|
|
|
orte_finalize.c \
|
|
|
|
orte_init.c \
|
2005-08-27 00:13:35 +04:00
|
|
|
orte_params.c \
|
2005-07-02 18:36:36 +04: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 07:47:20 +03:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)/openmpi/orte/runtime
|
|
|
|
orte_HEADERS = $(headers)
|
2004-01-15 07:47:20 +03:00
|
|
|
else
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)
|
2004-01-15 07:47:20 +03:00
|
|
|
endif
|