2005-07-02 18:36:36 +04: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.
|
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2005-07-02 18:36:36 +04:00
|
|
|
|
|
|
|
AM_CPPFLAGS = -DOMPI_PKGDATADIR=\"$(pkgdatadir)\"
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = liborteutil.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
proc_info.h \
|
|
|
|
session_dir.h \
|
2005-08-27 01:03:41 +04:00
|
|
|
sys_info.h \
|
2005-07-02 18:36:36 +04:00
|
|
|
universe_setup_file_io.h \
|
|
|
|
univ_info.h
|
|
|
|
|
|
|
|
liborteutil_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
proc_info.c \
|
|
|
|
session_dir.c \
|
2005-08-27 01:03:41 +04:00
|
|
|
sys_info.c \
|
2005-07-02 18:36:36 +04:00
|
|
|
universe_setup_file_io.c \
|
|
|
|
univ_info.c
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)/openmpi/orte/util
|
|
|
|
orte_HEADERS = $(headers)
|
2005-07-02 18:36:36 +04:00
|
|
|
else
|
2005-07-02 19:13:41 +04:00
|
|
|
ortedir = $(includedir)
|
2005-07-02 18:36:36 +04:00
|
|
|
endif
|