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 строки
716 B
Makefile
33 строки
716 B
Makefile
#
|
|
# Copyright (c) 2004-2007 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_memchecker.la
|
|
libmca_memchecker_la_SOURCES =
|
|
|
|
# header setup
|
|
nobase_opal_HEADERS =
|
|
|
|
# local files
|
|
headers = memchecker.h
|
|
libmca_memchecker_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
|