2004-06-14 21:05:53 +00:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-06-15 19:07:45 +00:00
|
|
|
noinst_LTLIBRARIES = libmca_mpool_base.la
|
2004-06-14 21:05:53 +00:00
|
|
|
|
|
|
|
# For VPATH builds, have to specify where static-modules.h will be found
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2004-06-15 19:07:45 +00:00
|
|
|
base.h
|
2004-06-14 21:05:53 +00:00
|
|
|
|
2004-06-15 19:07:45 +00:00
|
|
|
libmca_mpool_base_la_SOURCES = \
|
2004-06-14 21:05:53 +00:00
|
|
|
$(headers) \
|
2004-06-15 19:07:45 +00:00
|
|
|
mpool_base_open.c \
|
|
|
|
mpool_base_close.c \
|
2004-06-16 15:41:29 +00:00
|
|
|
mpool_base_init.c
|
2004-06-14 21:05:53 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-06-15 19:07:45 +00:00
|
|
|
ompidir = $(includedir)/mca/mpool/base
|
2004-06-14 21:05:53 +00:00
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|
|
|
|
|