2004-01-12 19:08:46 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-03-17 02:34:41 +03:00
|
|
|
#libraries
|
|
|
|
noinst_LTLIBRARIES = libmpi_attribute.la
|
2004-01-12 19:08:46 +03:00
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
attribute.h
|
|
|
|
|
2004-03-17 02:34:41 +03:00
|
|
|
libmpi_attribute_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
attribute.c
|
|
|
|
|
2004-01-12 19:08:46 +03:00
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
lamdir = $(includedir)/lam/mpi/attribute
|
|
|
|
lam_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
lamdir = $(includedir)
|
|
|
|
endif
|