1
1

More changes -- move back to src/ directory

This commit was SVN r1390.
Этот коммит содержится в:
Jeff Squyres 2004-06-17 21:11:24 +00:00
родитель ca10a19e8c
Коммит 57f3914f2f
4 изменённых файлов: 29 добавлений и 9 удалений

Просмотреть файл

@ -1,12 +1,18 @@
# -*- makefile -*-
# #
# $HEADER$ # $HEADER$
# #
# Use the top-level OpenMPI Makefile.options
include $(top_ompi_srcdir)/config/Makefile.options include $(top_ompi_srcdir)/config/Makefile.options
sources = \ SUBDIRS = src
ptl_gm.c
EXTRA_DIST = VERSION
# 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_coll_ompi_basic.la
if OMPI_BUILD_ptl_gm_LOADABLE_MODULE if OMPI_BUILD_ptl_gm_LOADABLE_MODULE
module_noinst = module_noinst =
@ -18,11 +24,13 @@ endif
mcamoduledir = $(libdir)/openmpi mcamoduledir = $(libdir)/openmpi
mcamodule_LTLIBRARIES = $(module_install) mcamodule_LTLIBRARIES = $(module_install)
mca_ptl_gm_la_SOURCES = $(sources) mca_ptl_gm_la_SOURCES =
mca_ptl_gm_la_LIBADD = $(LIBOMPI_LA) mca_ptl_gm_la_LIBADD = \
src/libmca_ptl_gm.la \
$(LIBOMPI_LA)
mca_ptl_gm_la_LDFLAGS = -module -avoid-version mca_ptl_gm_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(module_noinst) noinst_LTLIBRARIES = $(module_noinst)
libmca_ptl_gm_la_SOURCES = $(sources) libmca_ptl_gm_la_SOURCES =
libmca_ptl_gm_la_LIBADD = src/libmca_ptl_gm.la
libmca_ptl_gm_la_LDFLAGS = -module -avoid-version libmca_ptl_gm_la_LDFLAGS = -module -avoid-version

Просмотреть файл

@ -5,6 +5,6 @@
# Specific to this module # Specific to this module
PARAM_INIT_FILE=ptl_gm.c PARAM_INIT_FILE=src/ptl_gm.c
PARAM_CONFIG_HEADER_FILE="gm_config.h" PARAM_CONFIG_HEADER_FILE="gm_config.h"
PARAM_CONFIG_FILES="Makefile" PARAM_CONFIG_FILES="Makefile src/Makefile"

12
src/mca/ptl/gm/src/Makefile.am Обычный файл
Просмотреть файл

@ -0,0 +1,12 @@
# -*- makefile -*-
#
# $HEADER$
#
include $(top_ompi_srcdir)/config/Makefile.options
noinst_LTLIBRARIES = libmca_ptl_gm.la
libmca_ptl_gm_la_SOURCES = \
ptl_gm.c

Просмотреть файл