2005-07-02 17:53:01 +04:00
|
|
|
#
|
2005-11-05 22:57:48 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# 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.
|
2005-07-02 17:53:01 +04:00
|
|
|
# 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-12-18 01:09:23 +03:00
|
|
|
EXTRA_DIST =
|
2005-12-08 09:17:15 +03:00
|
|
|
|
2005-07-02 17:53:01 +04:00
|
|
|
SUBDIRS = \
|
2006-02-12 04:33:29 +03:00
|
|
|
include \
|
2005-07-02 17:53:01 +04:00
|
|
|
$(LIBLTDL_SUBDIR) \
|
|
|
|
asm \
|
2006-02-12 04:33:29 +03:00
|
|
|
etc \
|
2005-07-02 17:53:01 +04:00
|
|
|
event \
|
2005-08-13 18:00:56 +04:00
|
|
|
util \
|
2005-10-17 04:21:10 +04:00
|
|
|
mca/base \
|
|
|
|
$(MCA_opal_FRAMEWORKS_SUBDIRS) \
|
|
|
|
$(MCA_opal_FRAMEWORK_COMPONENT_STATIC_SUBDIRS) \
|
2005-08-13 18:00:56 +04:00
|
|
|
. \
|
2005-10-17 04:21:10 +04:00
|
|
|
$(MCA_opal_FRAMEWORK_COMPONENT_DSO_SUBDIRS)
|
|
|
|
|
|
|
|
DIST_SUBDIRS = \
|
|
|
|
$(LIBLTDL_SUBDIR) \
|
|
|
|
asm \
|
|
|
|
event \
|
|
|
|
util \
|
|
|
|
mca/base \
|
|
|
|
$(MCA_opal_FRAMEWORKS_SUBDIRS) \
|
|
|
|
$(MCA_opal_FRAMEWORK_COMPONENT_ALL_SUBDIRS)
|
2005-07-02 17:53:01 +04:00
|
|
|
|
|
|
|
# Build the main OPAL library
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libopal.la
|
|
|
|
libopal_la_SOURCES =
|
|
|
|
libopal_la_LIBADD = \
|
|
|
|
$(LIBLTDL_LTLIB) \
|
|
|
|
asm/libasm.la \
|
|
|
|
event/libevent.la \
|
|
|
|
mca/base/libmca_base.la \
|
2005-08-14 00:19:24 +04:00
|
|
|
util/libopalutil.la \
|
|
|
|
$(MCA_opal_FRAMEWORK_LIBS)
|
|
|
|
|
2005-07-02 17:53:01 +04:00
|
|
|
libopal_la_DEPENDENCIES = $(libopal_la_LIBADD)
|
|
|
|
|
2005-10-17 04:21:10 +04:00
|
|
|
# included subdirectory Makefile.am's and appended-to variables
|
|
|
|
headers =
|
|
|
|
noinst_LTLIBRARIES =
|
|
|
|
nobase_opal_HEADERS =
|
|
|
|
dist_pkgdata_DATA =
|
|
|
|
libopal_la_SOURCES += $(headers)
|
|
|
|
|
2005-07-02 17:53:01 +04:00
|
|
|
# Conditionally install the header files
|
|
|
|
|
2005-10-17 04:21:10 +04:00
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
opaldir = $(includedir)/openmpi/opal
|
|
|
|
nobase_opal_HEADERS += $(headers)
|
|
|
|
|
2005-07-02 17:53:01 +04:00
|
|
|
# This is somewhat of a hack -- libltdl is installed by libtoolize,
|
|
|
|
# and us installing the header here is slightly less kludgey than
|
|
|
|
# hacking their Makefile.am.
|
2005-10-17 04:21:10 +04:00
|
|
|
nobase_opal_HEADERS += libltdl/ltdl.h
|
2005-07-02 17:53:01 +04:00
|
|
|
else
|
2005-10-17 04:21:10 +04:00
|
|
|
opaldir = $(includedir)
|
2005-07-02 17:53:01 +04:00
|
|
|
endif
|
2005-10-17 04:21:10 +04:00
|
|
|
|
|
|
|
include class/Makefile.am
|
2005-11-11 03:26:27 +03:00
|
|
|
include memoryhooks/Makefile.am
|
2005-10-17 04:21:10 +04:00
|
|
|
include runtime/Makefile.am
|
|
|
|
include threads/Makefile.am
|
|
|
|
include mca/Makefile.am
|
2005-12-18 01:09:23 +03:00
|
|
|
include win32/Makefile.am
|
2006-01-16 04:48:03 +03:00
|
|
|
include tools/Makefile.am
|