bd8b4f7f1e
Roll in the ORTE state machine. Remove last traces of opal_sos. Remove UTK epoch code. Please see the various emails about the state machine change for details. I'll send something out later with more info on the new arch. This commit was SVN r26242.
32 строки
608 B
Makefile
32 строки
608 B
Makefile
#
|
|
# Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_state.la
|
|
libmca_state_la_SOURCES =
|
|
|
|
# pkgdata setup
|
|
dist_pkgdata_DATA =
|
|
|
|
# local files
|
|
headers = state.h state_types.h
|
|
libmca_state_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
ortedir = $(includedir)/openmpi/$(subdir)
|
|
nobase_orte_HEADERS = $(headers)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|