Bunches of things to make "make dist" work
This commit was SVN r1577.
Этот коммит содержится в:
родитель
f561218613
Коммит
9ee904d95d
15
configure.ac
15
configure.ac
@ -790,6 +790,13 @@ AC_CONFIG_FILES([
|
||||
|
||||
src/Makefile
|
||||
src/include/Makefile
|
||||
src/include/sys/Makefile
|
||||
src/include/sys/alpha/Makefile
|
||||
src/include/sys/amd64/Makefile
|
||||
src/include/sys/ia32/Makefile
|
||||
src/include/sys/ia64/Makefile
|
||||
src/include/sys/powerpc/Makefile
|
||||
src/include/sys/sparc64/Makefile
|
||||
|
||||
src/ctnetwork/Makefile
|
||||
src/class/Makefile
|
||||
@ -840,19 +847,22 @@ AC_CONFIG_FILES([
|
||||
src/mca/allocator/base/Makefile
|
||||
src/mca/coll/Makefile
|
||||
src/mca/coll/base/Makefile
|
||||
src/mca/gpr/Makefile
|
||||
src/mca/gpr/base/Makefile
|
||||
src/mca/io/Makefile
|
||||
src/mca/io/base/Makefile
|
||||
src/mca/mpool/Makefile
|
||||
src/mca/mpool/base/Makefile
|
||||
src/mca/one/Makefile
|
||||
src/mca/one/base/Makefile
|
||||
src/mca/ns/Makefile
|
||||
src/mca/ns/base/Makefile
|
||||
src/mca/pml/Makefile
|
||||
src/mca/pml/base/Makefile
|
||||
src/mca/ptl/Makefile
|
||||
src/mca/ptl/base/Makefile
|
||||
src/mca/topo/Makefile
|
||||
src/mca/topo/base/Makefile
|
||||
src/mca/gpr/Makefile
|
||||
|
||||
src/dynamic-mca/common/Makefile
|
||||
|
||||
@ -862,13 +872,14 @@ AC_CONFIG_FILES([
|
||||
src/dynamic-mca/Makefile
|
||||
src/dynamic-mca/allocator/Makefile
|
||||
src/dynamic-mca/coll/Makefile
|
||||
src/dynamic-mca/gpr/Makefile
|
||||
src/dynamic-mca/io/Makefile
|
||||
src/dynamic-mca/mpool/Makefile
|
||||
src/dynamic-mca/one/Makefile
|
||||
src/dynamic-mca/ns/Makefile
|
||||
src/dynamic-mca/pml/Makefile
|
||||
src/dynamic-mca/ptl/Makefile
|
||||
src/dynamic-mca/topo/Makefile
|
||||
src/dynamic-mca/gpr/Makefile
|
||||
|
||||
src/mpi/Makefile
|
||||
src/mpi/c/Makefile
|
||||
|
@ -18,4 +18,4 @@ SUBDIRS = \
|
||||
topo
|
||||
# JMS Temporary hack to make "make dist" function properly; directories
|
||||
# mentioned here will eventually be moved into SUBDIRS
|
||||
DIST_SUBDIRS = $(SUBDIRS) gpr
|
||||
DIST_SUBDIRS = $(SUBDIRS) gpr ns
|
||||
|
14
src/dynamic-mca/ns/Makefile.am
Обычный файл
14
src/dynamic-mca/ns/Makefile.am
Обычный файл
@ -0,0 +1,14 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = $(MCA_ns_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
||||
# Every directory under here is a sym link to something in the main
|
||||
# share/ssi tree. Hence, we don't want to distribute anything under
|
||||
# here.
|
||||
|
||||
DIST_SUBDIRS =
|
@ -10,6 +10,9 @@ noinst_LTLIBRARIES = liberrhandler.la
|
||||
# Source code files
|
||||
|
||||
headers = \
|
||||
errclass.h \
|
||||
errcode.h \
|
||||
errcode-internal.h \
|
||||
errhandler.h \
|
||||
errhandler_predefined.h
|
||||
|
||||
|
@ -4,6 +4,8 @@
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = sys
|
||||
|
||||
headers = \
|
||||
atomic.h \
|
||||
constants.h \
|
||||
|
7
src/include/sys/Makefile.am
Обычный файл
7
src/include/sys/Makefile.am
Обычный файл
@ -0,0 +1,7 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = alpha amd64 ia32 ia64 powerpc sparc64
|
16
src/include/sys/alpha/Makefile.am
Обычный файл
16
src/include/sys/alpha/Makefile.am
Обычный файл
@ -0,0 +1,16 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
headers = atomic.h
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/include/sys/alpha
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
16
src/include/sys/amd64/Makefile.am
Обычный файл
16
src/include/sys/amd64/Makefile.am
Обычный файл
@ -0,0 +1,16 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
headers = atomic.h
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/include/sys/amd64
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
16
src/include/sys/ia32/Makefile.am
Обычный файл
16
src/include/sys/ia32/Makefile.am
Обычный файл
@ -0,0 +1,16 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
headers = atomic.h
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/include/sys/ia32
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
16
src/include/sys/ia64/Makefile.am
Обычный файл
16
src/include/sys/ia64/Makefile.am
Обычный файл
@ -0,0 +1,16 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
headers = atomic.h
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/include/sys/ia64
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
16
src/include/sys/powerpc/Makefile.am
Обычный файл
16
src/include/sys/powerpc/Makefile.am
Обычный файл
@ -0,0 +1,16 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
headers = atomic.h
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/include/sys/powerpc
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
16
src/include/sys/sparc64/Makefile.am
Обычный файл
16
src/include/sys/sparc64/Makefile.am
Обычный файл
@ -0,0 +1,16 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
headers = atomic.h
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/include/sys/sparc64
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
@ -19,7 +19,7 @@ SUBDIRS = \
|
||||
topo
|
||||
# JMS Temporary hack to make "make dist" function properly; directories
|
||||
# mentioned here will eventually be moved into SUBDIRS
|
||||
DIST_SUBDIRS = $(SUBDIRS) gpr
|
||||
DIST_SUBDIRS = $(SUBDIRS) gpr ns
|
||||
|
||||
# Source code files
|
||||
|
||||
|
@ -1,7 +1,28 @@
|
||||
# -*- makefile -*-
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = base $(MCA_gpr_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_gpr_ALL_SUBDIRS)
|
||||
|
||||
# Source code files
|
||||
|
||||
headers = gpr.h
|
||||
|
||||
noinst_LTLIBRARIES = libmca_gpr.la
|
||||
libmca_gpr_la_SOURCES =
|
||||
libmca_gpr_la_LIBADD = \
|
||||
base/libmca_gpr_base.la \
|
||||
$(MCA_gpr_STATIC_LTLIBS)
|
||||
libmca_gpr_la_DEPENDENCIES = $(libmca_gpr_la_LIBADD)
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/mca/gpr
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
||||
|
29
src/mca/gpr/base/Makefile.am
Обычный файл
29
src/mca/gpr/base/Makefile.am
Обычный файл
@ -0,0 +1,29 @@
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
noinst_LTLIBRARIES = libmca_gpr_base.la
|
||||
|
||||
# For VPATH builds, have to specify where static-modules.h will be found
|
||||
|
||||
AM_CPPFLAGS = -I$(top_builddir)/src
|
||||
|
||||
# Source code files
|
||||
|
||||
headers = \
|
||||
base.h
|
||||
|
||||
libmca_gpr_base_la_SOURCES = \
|
||||
$(headers)
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/openmpi/mca/gpr/base
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
||||
|
@ -1,25 +1,27 @@
|
||||
# -*- makefile -*-
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
noinst_LTLIBRARIES = libns.la
|
||||
SUBDIRS = base $(MCA_ns_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_ns_ALL_SUBDIRS)
|
||||
|
||||
# Source code files
|
||||
|
||||
headers = \
|
||||
ns.h
|
||||
headers = ns.h
|
||||
|
||||
libns_la_SOURCES = \
|
||||
$(headers) \
|
||||
replica/name_server.c
|
||||
noinst_LTLIBRARIES = libmca_ns.la
|
||||
libmca_ns_la_SOURCES =
|
||||
libmca_ns_la_LIBADD = \
|
||||
base/libmca_ns_base.la \
|
||||
$(MCA_ns_STATIC_LTLIBS)
|
||||
libmca_ns_la_DEPENDENCIES = $(libmca_ns_la_LIBADD)
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
if WANT_INSTALL_HEADERS
|
||||
ompidir = $(includedir)/ompi/util
|
||||
ompidir = $(includedir)/openmpi/mca/ns
|
||||
ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
|
@ -15,8 +15,6 @@ AM_CPPFLAGS = -I$(top_builddir)/src
|
||||
headers = \
|
||||
base.h
|
||||
|
||||
# Library
|
||||
|
||||
libmca_ns_base_la_SOURCES = \
|
||||
$(headers) \
|
||||
ns_base_close.c \
|
||||
@ -31,3 +29,4 @@ ompi_HEADERS = $(headers)
|
||||
else
|
||||
ompidir = $(includedir)
|
||||
endif
|
||||
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user