2004-06-15 20:56:35 +04:00
|
|
|
#
|
2004-11-22 04:38:40 +03: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$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-06-15 20:56:35 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_allocator_base.la
|
|
|
|
|
|
|
|
# For VPATH builds, have to specify where static-modules.h will be found
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
libmca_allocator_base_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
allocator_base_open.c \
|
2004-06-17 00:01:19 +04:00
|
|
|
allocator_base_close.c
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-11-18 06:53:42 +03:00
|
|
|
ompidir = $(includedir)/openmpi/mca/allocator/base
|
2004-06-15 20:56:35 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|
|
|
|
|