1
1
openmpi/opal/mca/dl/dlopen/Makefile.am
Jeff Squyres 7d340c0c26 dlopen: simple dl component based on POSIX dlopen
Works on systems with dlopen (e.g., Linux and OS X).  It requires
dlfcn.h and libdl, which many systems have installed by default.
2015-03-09 08:16:55 -07:00

24 строки
598 B
Makefile

#
# Copyright (c) 2004-2010 The Trustees of Indiana University.
# All rights reserved.
# Copyright (c) 2014-2015 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
sources = \
dl_dlopen.h \
dl_dlopen_component.c \
dl_dlopen_module.c
# This component will only ever be built statically -- never as a DSO.
noinst_LTLIBRARIES = libmca_dl_dlopen.la
libmca_dl_dlopen_la_SOURCES = $(sources)
libmca_dl_dlopen_la_LDFLAGS = -module -avoid-version
libmca_dl_dlopen_la_LIBS = $(opal_dl_dlopen_LIBS)