1
1
openmpi/orte/mca/routed/cm/Makefile.am
Jeff Squyres df7c387155 I'm (temporarily?) removing this entry because there's no .window file
in this directory and it's causing "make dist" to break.

Shiqing -- is there a missing file in this directory?  If so, please
add it and restore the EXTRA_DIST line I just removed.  Thanks!

This commit was SVN r21340.
2009-06-01 14:07:08 +00:00

36 строки
820 B
Makefile

#
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
sources = \
routed_cm.h \
routed_cm.c \
routed_cm_component.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 OMPI_BUILD_routed_cm_DSO
component_noinst =
component_install = mca_routed_cm.la
else
component_noinst = libmca_routed_cm.la
component_install =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_routed_cm_la_SOURCES = $(sources)
mca_routed_cm_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(component_noinst)
libmca_routed_cm_la_SOURCES = $(sources)
libmca_routed_cm_la_LDFLAGS = -module -avoid-version