2005-07-02 17:53:01 +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$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
|
|
|
SUBDIRS = \
|
|
|
|
include \
|
|
|
|
$(LIBLTDL_SUBDIR) \
|
|
|
|
asm \
|
|
|
|
class \
|
|
|
|
event \
|
|
|
|
mca \
|
2005-08-10 04:43:47 +04:00
|
|
|
memory \
|
2005-07-02 17:53:01 +04:00
|
|
|
runtime \
|
|
|
|
threads \
|
2005-07-02 19:46:01 +04:00
|
|
|
util
|
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 \
|
|
|
|
class/libclass.la \
|
|
|
|
event/libevent.la \
|
|
|
|
mca/base/libmca_base.la \
|
2005-08-10 02:40:42 +04:00
|
|
|
memory/libopalmemory.la \
|
2005-07-02 17:53:01 +04:00
|
|
|
runtime/libruntime.la \
|
|
|
|
threads/libthreads.la \
|
2005-07-02 18:35:30 +04:00
|
|
|
util/libopalutil.la
|
2005-07-02 17:53:01 +04:00
|
|
|
libopal_la_DEPENDENCIES = $(libopal_la_LIBADD)
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ompidir = $(includedir)/openmpi/opal/libltdl
|
|
|
|
ompi_HEADERS = libltdl/ltdl.h
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|