11faab1091
This commit was SVN r31679.
40 строки
1.0 KiB
Makefile
40 строки
1.0 KiB
Makefile
#
|
|
# Copyright (c) 2004-2010 The Trustees of Indiana University.
|
|
# All rights reserved.
|
|
# Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AM_CPPFLAGS = \
|
|
$(LTDLINCL)
|
|
|
|
sources = \
|
|
compress_gzip.h \
|
|
compress_gzip_component.c \
|
|
compress_gzip_module.c
|
|
|
|
# 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).
|
|
|
|
if MCA_BUILD_opal_compress_gzip_DSO
|
|
component_noinst =
|
|
component_install = mca_compress_gzip.la
|
|
else
|
|
component_noinst = libmca_compress_gzip.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(opallibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_compress_gzip_la_SOURCES = $(sources)
|
|
mca_compress_gzip_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_compress_gzip_la_SOURCES = $(sources)
|
|
libmca_compress_gzip_la_LDFLAGS = -module -avoid-version
|