2004-01-09 11:27:58 +03:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libmca_pml_base.la
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-03-17 06:58:21 +03:00
|
|
|
# For VPATH builds, have to specify where static-modules.h will be found
|
|
|
|
|
2004-03-26 17:15:20 +03:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-pedantic \
|
|
|
|
-I$(top_builddir)/src
|
2004-03-17 06:58:21 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
# Source code files
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
headers = \
|
2004-01-12 00:31:52 +03:00
|
|
|
base.h \
|
2004-01-14 06:42:02 +03:00
|
|
|
pml_base_request.h
|
2004-01-09 22:20:50 +03:00
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libmca_pml_base_la_SOURCES = \
|
2004-01-09 22:20:50 +03:00
|
|
|
$(headers) \
|
2004-01-29 05:43:58 +03:00
|
|
|
pml_base_close.c \
|
|
|
|
pml_base_request.c \
|
2004-01-30 06:54:52 +03:00
|
|
|
pml_base_open.c \
|
|
|
|
pml_base_select.c
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
# Conditionally install the header files
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
if WANT_INSTALL_HEADERS
|
2004-03-17 22:06:06 +03:00
|
|
|
lamdir = $(includedir)/lam/mca/pml/base
|
2004-01-09 22:20:50 +03:00
|
|
|
lam_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
lamdir = $(includedir)
|
|
|
|
endif
|
|
|
|
|