2004-09-15 19:00:14 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2010-09-17 23:04:06 +00:00
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-09-15 19:00:14 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
AM_CPPFLAGS = $(plm_tm_CPPFLAGS)
|
2005-08-19 14:46:11 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
dist_pkgdata_DATA = help-plm-tm.txt
|
2005-10-02 11:58:18 +00:00
|
|
|
|
2005-08-19 14:46:11 +00:00
|
|
|
sources = \
|
2008-02-28 01:57:57 +00:00
|
|
|
plm_tm.h \
|
|
|
|
plm_tm_component.c \
|
|
|
|
plm_tm_module.c
|
2004-09-15 19:00:14 +00:00
|
|
|
|
|
|
|
# Make the output library in this directory, and name it either
|
|
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
|
|
# (for static builds).
|
|
|
|
|
2010-09-17 23:04:06 +00:00
|
|
|
if MCA_BUILD_orte_plm_tm_DSO
|
2005-05-06 21:50:30 +00:00
|
|
|
lib =
|
|
|
|
lib_sources =
|
2008-02-28 01:57:57 +00:00
|
|
|
component = mca_plm_tm.la
|
2005-05-06 21:50:30 +00:00
|
|
|
component_sources = $(sources)
|
2004-09-15 19:00:14 +00:00
|
|
|
else
|
2008-02-28 01:57:57 +00:00
|
|
|
lib = libmca_plm_tm.la
|
2005-05-06 21:50:30 +00:00
|
|
|
lib_sources = $(sources)
|
|
|
|
component =
|
|
|
|
component_sources =
|
2004-09-15 19:00:14 +00:00
|
|
|
endif
|
|
|
|
|
2007-04-12 11:19:42 +00:00
|
|
|
mcacomponentdir = $(pkglibdir)
|
2005-05-06 21:50:30 +00:00
|
|
|
mcacomponent_LTLIBRARIES = $(component)
|
2008-02-28 01:57:57 +00:00
|
|
|
mca_plm_tm_la_SOURCES = $(component_sources)
|
|
|
|
mca_plm_tm_la_LDFLAGS = -module -avoid-version $(plm_tm_LDFLAGS)
|
2009-02-11 14:40:11 +00:00
|
|
|
mca_plm_tm_la_LIBADD = $(plm_tm_LIBS)
|
2004-09-15 19:00:14 +00:00
|
|
|
|
2005-05-06 21:50:30 +00:00
|
|
|
noinst_LTLIBRARIES = $(lib)
|
2008-02-28 01:57:57 +00:00
|
|
|
libmca_plm_tm_la_SOURCES = $(lib_sources)
|
|
|
|
libmca_plm_tm_la_LDFLAGS = -module -avoid-version $(plm_tm_LDFLAGS)
|
|
|
|
libmca_plm_tm_la_LIBADD = $(plm_tm_LIBS)
|