2004-07-01 18:49:54 +04:00
|
|
|
# -*- makefile -*-
|
2004-03-07 01:48:12 +03:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-07-01 18:49:54 +04:00
|
|
|
# Use the top-level OMPI Makefile.options
|
2004-03-07 01:48:12 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
2004-03-07 01:48:12 +03:00
|
|
|
|
|
|
|
SUBDIRS = src
|
|
|
|
|
|
|
|
EXTRA_DIST = VERSION
|
|
|
|
|
2004-07-01 18:49:54 +04:00
|
|
|
# According to the MCA spec, we have to make the output library here
|
|
|
|
# in the top-level directory, and it has to be named
|
|
|
|
# libompi_ssi_topo_ompi_unity.la
|
2004-03-07 01:48:12 +03:00
|
|
|
|
2004-07-01 18:49:54 +04:00
|
|
|
if OMPI_BUILD_topo_unity_LOADABLE_MODULE
|
|
|
|
module_noinst =
|
|
|
|
module_install = mca_topo_unity.la
|
2004-03-07 01:48:12 +03:00
|
|
|
else
|
2004-07-01 18:49:54 +04:00
|
|
|
module_noinst = libmca_topo_unity.la
|
|
|
|
module_install =
|
2004-03-07 01:48:12 +03:00
|
|
|
endif
|
|
|
|
|
2004-07-01 18:49:54 +04:00
|
|
|
mcamoduledir = $(libdir)/openmpi
|
|
|
|
mcamodule_LTLIBRARIES = $(module_install)
|
2004-03-07 01:48:12 +03:00
|
|
|
mca_topo_unity_la_SOURCES =
|
2004-07-01 18:49:54 +04:00
|
|
|
mca_topo_unity_la_LIBADD = \
|
|
|
|
src/libmca_topo_unity.la \
|
|
|
|
$(LIBMPI_LA)
|
2004-03-07 01:48:12 +03:00
|
|
|
mca_topo_unity_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
2004-07-01 18:49:54 +04:00
|
|
|
noinst_LTLIBRARIES = $(module_noinst)
|
2004-03-17 22:43:41 +03:00
|
|
|
libmca_topo_unity_la_SOURCES =
|
|
|
|
libmca_topo_unity_la_LIBADD = src/libmca_topo_unity.la
|
|
|
|
libmca_topo_unity_la_LDFLAGS = -module -avoid-version
|
2004-03-07 01:48:12 +03:00
|
|
|
|