40a2bfa238
This merges the branch containing the revamped build system based around converting autogen from a bash script to a Perl program. Jeff has provided emails explaining the features contained in the change. Please note that configure requirements on components HAVE CHANGED. For example. a configure.params file is no longer required in each component directory. See Jeff's emails for an explanation. This commit was SVN r23764.
33 строки
685 B
Makefile
33 строки
685 B
Makefile
#
|
|
# Copyright (c) 2006 Los Alamos National Security, LLC. All rights
|
|
# reserved.
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_installdirs.la
|
|
libmca_installdirs_la_SOURCES =
|
|
|
|
# header setup
|
|
nobase_opal_HEADERS =
|
|
|
|
# local files
|
|
headers = installdirs.h
|
|
libmca_installdirs_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
opaldir = $(includedir)/openmpi/$(subdir)
|
|
if WANT_INSTALL_HEADERS
|
|
nobase_opal_HEADERS += $(headers)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|