2004-01-12 19:08:46 +03: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-01-12 19:08:46 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libattribute.la
|
|
|
|
|
2004-01-12 19:08:46 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
attribute.h
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libattribute_la_SOURCES = \
|
2004-03-17 02:34:41 +03:00
|
|
|
$(headers) \
|
2004-09-16 04:00:09 +04:00
|
|
|
attribute.c \
|
|
|
|
attribute_predefined.c
|
2004-03-17 02:34:41 +03:00
|
|
|
|
2004-01-12 19:08:46 +03:00
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-06-17 22:21:08 +04:00
|
|
|
ompidir = $(includedir)/openmpi/attribute
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-12 19:08:46 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-01-12 19:08:46 +03:00
|
|
|
endif
|