1
1

Move the compilation of SM to the "new" model. No Makefile in the src, everything get compiled

directly in the sm directory.

This commit was SVN r6461.
Этот коммит содержится в:
George Bosilca 2005-07-13 16:17:44 +00:00
родитель 17480a5965
Коммит 1cca889bbe
3 изменённых файлов: 27 добавлений и 59 удалений

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

@ -18,8 +18,6 @@
include $(top_ompi_srcdir)/config/Makefile.options
SUBDIRS = src
# 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).
@ -32,13 +30,34 @@ component_noinst = libmca_ptl_sm.la
component_install =
endif
EXTRA_DIST =
sm_SOURCES = src/ptl_sm.c src/ptl_sm.h src/ptl_sm_address.h src/ptl_sm_component.c \
src/ptl_sm_frag.h src/ptl_sm_frag.c src/ptl_sm_peer.h src/ptl_sm_recvfrag.h \
src/ptl_sm_recvfrag.c src/ptl_sm_send.c src/ptl_sm_sendreq.c \
src/ptl_sm_sendreq.h src/ptl_sm_sendfrag.c src/ptl_sm_sendfrag.h
mcacomponentdir = $(libdir)/openmpi
mcacomponent_LTLIBRARIES = $(component_install)
mca_ptl_sm_la_SOURCES =
mca_ptl_sm_la_LIBADD = src/libmca_ptl_sm.la
mca_ptl_sm_la_SOURCES = $(sm_SOURCES)
mca_ptl_sm_la_DEPENDENCIES = librecompile.la
mca_ptl_sm_la_LIBADD =
mca_ptl_sm_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(component_noinst)
libmca_ptl_sm_la_SOURCES =
libmca_ptl_sm_la_LIBADD = src/libmca_ptl_sm.la
noinst_LTLIBRARIES = $(component_noinst) librecompile.la
libmca_ptl_sm_la_SOURCES = $(sm_SOURCES)
libmca_ptl_sm_la_DEPENDENCIES = librecompile.la
libmca_ptl_sm_la_LIBADD =
libmca_ptl_sm_la_LDFLAGS = -module -avoid-version
nodist_librecompile_la_SOURCES = src/ptl_sm_send_alternate.c
librecompile_la_CPPFLAGS = -DSM_COMMON_BASE_ADDR
#
# The "send alternate" file is really the same as the "send" file, but
# compiled with a different #define
#
$(srcdir)/src/ptl_sm_send_alternate.c:
if test ! -f $@; then \
ln -sf ptl_sm_send.c $@; \
fi

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

@ -19,4 +19,4 @@
PARAM_INIT_FILE=src/ptl_sm.c
PARAM_CONFIG_HEADER_FILE="src/sm_config.h"
PARAM_CONFIG_FILES="Makefile src/Makefile"
PARAM_CONFIG_FILES="Makefile"

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

@ -1,51 +0,0 @@
#
# Copyright (c) 2004-2005 The Trustees of Indiana University.
# All rights reserved.
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
# All rights reserved.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
include $(top_ompi_srcdir)/config/Makefile.options
noinst_LTLIBRARIES = libmca_ptl_sm.la librecompile.la
libmca_ptl_sm_la_LIBADD = librecompile.la
libmca_ptl_sm_la_SOURCES = \
ptl_sm.c \
ptl_sm.h \
ptl_sm_address.h \
ptl_sm_component.c \
ptl_sm_frag.h \
ptl_sm_frag.c \
ptl_sm_peer.h \
ptl_sm_recvfrag.h \
ptl_sm_recvfrag.c \
ptl_sm_send.c \
ptl_sm_sendreq.c \
ptl_sm_sendreq.h \
ptl_sm_sendfrag.c \
ptl_sm_sendfrag.h
libmca_ptl_sm_la_DEPENDENCIES = librecompile.la
nodist_librecompile_la_SOURCES = \
ptl_sm_send_alternate.c
librecompile_la_CPPFLAGS = -DSM_COMMON_BASE_ADDR
#
# The "send alternate" file is really the same as the "send" file, but
# compiled with a different #define
#
ptl_sm_send_alternate.c:
if test ! -f $@; then \
ln -sf $(srcdir)/ptl_sm_send.c $@; \
fi