2004-01-15 07:47:20 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2007-03-17 02:11:45 +03:00
|
|
|
# Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
# 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.
|
2009-05-28 16:05:42 +04:00
|
|
|
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
2012-06-24 01:20:09 +04:00
|
|
|
# Copyright (c) 2012 Los Alamos National Security, LLC.
|
|
|
|
# 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-10-17 04:21:10 +04:00
|
|
|
# This makefile.am does not stand on its own - it is included from orte/Makefile.am
|
|
|
|
|
|
|
|
dist_pkgdata_DATA += runtime/help-orte-runtime.txt
|
|
|
|
|
|
|
|
headers += \
|
2008-06-18 07:15:56 +04:00
|
|
|
runtime/runtime.h \
|
2008-08-31 22:06:55 +04:00
|
|
|
runtime/orte_locks.h \
|
2008-09-01 21:15:01 +04:00
|
|
|
runtime/orte_globals.h \
|
2010-07-18 01:03:27 +04:00
|
|
|
runtime/orte_quit.h \
|
2008-08-31 22:06:55 +04:00
|
|
|
runtime/runtime_internals.h \
|
2012-06-28 22:23:34 +04:00
|
|
|
runtime/data_type_support/orte_dt_support.h \
|
|
|
|
runtime/orte_wait.h \
|
|
|
|
runtime/orte_cr.h \
|
|
|
|
runtime/orte_data_server.h \
|
|
|
|
runtime/orte_info_support.h
|
2008-06-18 07:15:56 +04:00
|
|
|
|
|
|
|
libopen_rte_la_SOURCES += \
|
|
|
|
runtime/orte_finalize.c \
|
|
|
|
runtime/orte_init.c \
|
|
|
|
runtime/orte_locks.c \
|
2008-08-31 22:06:55 +04:00
|
|
|
runtime/orte_globals.c \
|
2010-07-18 01:03:27 +04:00
|
|
|
runtime/orte_quit.c \
|
2008-08-31 22:06:55 +04:00
|
|
|
runtime/data_type_support/orte_dt_compare_fns.c \
|
|
|
|
runtime/data_type_support/orte_dt_copy_fns.c \
|
|
|
|
runtime/data_type_support/orte_dt_print_fns.c \
|
|
|
|
runtime/data_type_support/orte_dt_packing_fns.c \
|
|
|
|
runtime/data_type_support/orte_dt_unpacking_fns.c \
|
2012-06-28 22:23:34 +04:00
|
|
|
runtime/orte_mca_params.c \
|
2007-03-17 02:11:45 +03:00
|
|
|
runtime/orte_wait.c \
|
2008-02-28 04:57:57 +03:00
|
|
|
runtime/orte_cr.c \
|
2012-06-28 22:23:34 +04:00
|
|
|
runtime/orte_data_server.c \
|
|
|
|
runtime/orte_info_support.c
|