After talking with Jeff, I follow his advices:
- remove the src directory. All files are now directly in the prof directory - rename ptl_prof_module.c -> ptl_prof_component.c - ditch the *ptl-prof-version* files from SVN; they're automatically created - keep the VERSION file. Additionally I modify the Makefile.am to reflect the changes and to create the component in the correct directory. This commit was SVN r2022.
Этот коммит содержится в:
родитель
5e993a259d
Коммит
4deb3299f4
@ -83,16 +83,21 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
mkinstalldirs = $(mkdir_p)
|
||||
CONFIG_HEADER = $(top_builddir)/include/ompi_config.h
|
||||
CONFIG_CLEAN_FILES = ptl-prof-version.h.template
|
||||
am__installdirs = "$(DESTDIR)$(mcamoduledir)"
|
||||
mcamoduleLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(mcamodule_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
||||
libmca_ptl_prof_la_DEPENDENCIES = src/libmca_ptl_prof.la
|
||||
am_libmca_ptl_prof_la_OBJECTS =
|
||||
am__installdirs = "$(DESTDIR)$(mcacomponentdir)"
|
||||
mcacomponentLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(mcacomponent_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
||||
libmca_ptl_prof_la_DEPENDENCIES =
|
||||
am__objects_1 = ptl_prof.lo ptl_prof_component.lo
|
||||
am_libmca_ptl_prof_la_OBJECTS = $(am__objects_1)
|
||||
libmca_ptl_prof_la_OBJECTS = $(am_libmca_ptl_prof_la_OBJECTS)
|
||||
mca_ptl_prof_la_DEPENDENCIES = src/libmca_ptl_prof.la
|
||||
am_mca_ptl_prof_la_OBJECTS =
|
||||
mca_ptl_prof_la_DEPENDENCIES =
|
||||
am_mca_ptl_prof_la_OBJECTS = $(am__objects_1)
|
||||
mca_ptl_prof_la_OBJECTS = $(am_mca_ptl_prof_la_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/include
|
||||
depcomp = $(SHELL) $(top_srcdir)/./config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
DEP_FILES = ./$(DEPDIR)/ptl_prof.Plo \
|
||||
./$(DEPDIR)/ptl_prof_component.Plo
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
|
||||
@ -104,15 +109,8 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
SOURCES = $(libmca_ptl_prof_la_SOURCES) $(mca_ptl_prof_la_SOURCES)
|
||||
DIST_SOURCES = $(libmca_ptl_prof_la_SOURCES) \
|
||||
$(mca_ptl_prof_la_SOURCES)
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-exec-recursive install-info-recursive \
|
||||
install-recursive installcheck-recursive installdirs-recursive \
|
||||
pdf-recursive ps-recursive uninstall-info-recursive \
|
||||
uninstall-recursive
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /home/bosilca/ompi/config/missing --run aclocal-1.8
|
||||
AMDEP_FALSE = #
|
||||
@ -383,31 +381,37 @@ sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_ompi_builddir = /home/bosilca/ompi
|
||||
top_ompi_srcdir = /home/bosilca/ompi
|
||||
SUBDIRS = src
|
||||
EXTRA_DIST = VERSION
|
||||
#module_noinst = libmca_ptl_prof.la
|
||||
|
||||
# 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
|
||||
module_noinst =
|
||||
#module_install =
|
||||
module_install = mca_ptl_prof.la
|
||||
mcamoduledir = $(libdir)/ompi
|
||||
mcamodule_LTLIBRARIES = $(module_install)
|
||||
mca_ptl_prof_la_SOURCES =
|
||||
mca_ptl_prof_la_LIBADD = \
|
||||
src/libmca_ptl_prof.la \
|
||||
$(LIBOMPI_LA)
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_ompi_builddir)/src/include \
|
||||
-I$(top_ompi_builddir)/src/ompi/event \
|
||||
-I$(top_ompi_srcdir)/src \
|
||||
-I$(top_ompi_srcdir)/src/include
|
||||
|
||||
prof_la_SOURCES = ptl_prof.c ptl_prof.h \
|
||||
ptl_prof_component.c
|
||||
|
||||
#component_noinst = libmca_ptl_prof.la
|
||||
component_noinst =
|
||||
#component_install =
|
||||
component_install = mca_ptl_prof.la
|
||||
mcacomponentdir = $(libdir)/openmpi
|
||||
mcacomponent_LTLIBRARIES = $(component_install)
|
||||
mca_ptl_prof_la_SOURCES = $(prof_la_SOURCES)
|
||||
mca_ptl_prof_la_LIBADD = $(LIBOMPI_LA)
|
||||
mca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||||
noinst_LTLIBRARIES = $(module_noinst)
|
||||
libmca_ptl_prof_la_SOURCES =
|
||||
libmca_ptl_prof_la_LIBADD = src/libmca_ptl_prof.la
|
||||
noinst_LTLIBRARIES = $(component_noinst)
|
||||
libmca_ptl_prof_la_SOURCES = $(prof_la_SOURCES)
|
||||
libmca_ptl_prof_la_LIBADD =
|
||||
libmca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||||
all: all-recursive
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
@ -439,28 +443,28 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
ptl-prof-version.h.template: $(top_builddir)/config.status $(srcdir)/ptl-prof-version.h.template.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
||||
install-mcamoduleLTLIBRARIES: $(mcamodule_LTLIBRARIES)
|
||||
install-mcacomponentLTLIBRARIES: $(mcacomponent_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(mcamoduledir)" || $(mkdir_p) "$(DESTDIR)$(mcamoduledir)"
|
||||
@list='$(mcamodule_LTLIBRARIES)'; for p in $$list; do \
|
||||
test -z "$(mcacomponentdir)" || $(mkdir_p) "$(DESTDIR)$(mcacomponentdir)"
|
||||
@list='$(mcacomponent_LTLIBRARIES)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
f="`echo $$p | sed -e 's|^.*/||'`"; \
|
||||
echo " $(LIBTOOL) --mode=install $(mcamoduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(mcamoduledir)/$$f'"; \
|
||||
$(LIBTOOL) --mode=install $(mcamoduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(mcamoduledir)/$$f"; \
|
||||
echo " $(LIBTOOL) --mode=install $(mcacomponentLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(mcacomponentdir)/$$f'"; \
|
||||
$(LIBTOOL) --mode=install $(mcacomponentLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(mcacomponentdir)/$$f"; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
uninstall-mcamoduleLTLIBRARIES:
|
||||
uninstall-mcacomponentLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(mcamodule_LTLIBRARIES)'; for p in $$list; do \
|
||||
@list='$(mcacomponent_LTLIBRARIES)'; for p in $$list; do \
|
||||
p="`echo $$p | sed -e 's|^.*/||'`"; \
|
||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(mcamoduledir)/$$p'"; \
|
||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(mcamoduledir)/$$p"; \
|
||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(mcacomponentdir)/$$p'"; \
|
||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(mcacomponentdir)/$$p"; \
|
||||
done
|
||||
|
||||
clean-mcamoduleLTLIBRARIES:
|
||||
-test -z "$(mcamodule_LTLIBRARIES)" || rm -f $(mcamodule_LTLIBRARIES)
|
||||
@list='$(mcamodule_LTLIBRARIES)'; for p in $$list; do \
|
||||
clean-mcacomponentLTLIBRARIES:
|
||||
-test -z "$(mcacomponent_LTLIBRARIES)" || rm -f $(mcacomponent_LTLIBRARIES)
|
||||
@list='$(mcacomponent_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
@ -478,7 +482,7 @@ clean-noinstLTLIBRARIES:
|
||||
libmca_ptl_prof.la: $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_DEPENDENCIES)
|
||||
$(LINK) $(libmca_ptl_prof_la_LDFLAGS) $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
mca_ptl_prof.la: $(mca_ptl_prof_la_OBJECTS) $(mca_ptl_prof_la_DEPENDENCIES)
|
||||
$(LINK) -rpath $(mcamoduledir) $(mca_ptl_prof_la_LDFLAGS) $(mca_ptl_prof_la_OBJECTS) $(mca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
$(LINK) -rpath $(mcacomponentdir) $(mca_ptl_prof_la_LDFLAGS) $(mca_ptl_prof_la_OBJECTS) $(mca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
@ -486,6 +490,33 @@ mostlyclean-compile:
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/ptl_prof.Plo
|
||||
include ./$(DEPDIR)/ptl_prof_component.Plo
|
||||
|
||||
.c.o:
|
||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
|
||||
# $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
|
||||
# $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
|
||||
# $(CCDEPMODE) $(depcomp) \
|
||||
# $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
@ -496,65 +527,6 @@ distclean-libtool:
|
||||
-rm -f libtool
|
||||
uninstall-info-am:
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@set fnord $$MAKEFLAGS; amf=$$2; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||
maintainer-clean-recursive:
|
||||
@set fnord $$MAKEFLAGS; amf=$$2; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
@ -565,23 +537,10 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
@ -594,7 +553,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
@ -643,36 +602,22 @@ distdir: $(DISTFILES)
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d "$(distdir)/$$subdir" \
|
||||
|| mkdir "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
(cd $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="../$(top_distdir)" \
|
||||
distdir="../$(distdir)/$$subdir" \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
for dir in "$(DESTDIR)$(mcamoduledir)"; do \
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(mcacomponentdir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
done
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
@ -689,72 +634,70 @@ distclean-generic:
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-mcamoduleLTLIBRARIES \
|
||||
clean-am: clean-generic clean-libtool clean-mcacomponentLTLIBRARIES \
|
||||
clean-noinstLTLIBRARIES mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
html: html-am
|
||||
|
||||
info: info-recursive
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-mcamoduleLTLIBRARIES
|
||||
install-data-am: install-mcacomponentLTLIBRARIES
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am uninstall-mcamoduleLTLIBRARIES
|
||||
uninstall-am: uninstall-info-am uninstall-mcacomponentLTLIBRARIES
|
||||
|
||||
uninstall-info: uninstall-info-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
|
||||
clean clean-generic clean-libtool clean-mcamoduleLTLIBRARIES \
|
||||
clean-noinstLTLIBRARIES clean-recursive ctags ctags-recursive \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-recursive distclean-tags distdir \
|
||||
dvi dvi-am html html-am info info-am install install-am \
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-mcacomponentLTLIBRARIES \
|
||||
clean-noinstLTLIBRARIES ctags distclean distclean-compile \
|
||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-exec install-exec-am \
|
||||
install-info install-info-am install-man \
|
||||
install-mcamoduleLTLIBRARIES install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic maintainer-clean-recursive \
|
||||
mostlyclean mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
|
||||
tags tags-recursive uninstall uninstall-am uninstall-info-am \
|
||||
uninstall-mcamoduleLTLIBRARIES
|
||||
install-mcacomponentLTLIBRARIES install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am uninstall-info-am \
|
||||
uninstall-mcacomponentLTLIBRARIES
|
||||
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
@ -6,32 +6,37 @@
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = src
|
||||
|
||||
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
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_ompi_builddir)/src/include \
|
||||
-I$(top_ompi_builddir)/src/ompi/event \
|
||||
-I$(top_ompi_srcdir)/src \
|
||||
-I$(top_ompi_srcdir)/src/include
|
||||
|
||||
prof_la_SOURCES = ptl_prof.c ptl_prof.h \
|
||||
ptl_prof_component.c
|
||||
|
||||
if OMPI_BUILD_ptl_prof_DSO
|
||||
module_noinst =
|
||||
module_install = mca_ptl_prof.la
|
||||
component_noinst =
|
||||
component_install = mca_ptl_prof.la
|
||||
else
|
||||
module_noinst = libmca_ptl_prof.la
|
||||
module_install =
|
||||
component_noinst = libmca_ptl_prof.la
|
||||
component_install =
|
||||
endif
|
||||
|
||||
mcamoduledir = $(libdir)/ompi
|
||||
mcamodule_LTLIBRARIES = $(module_install)
|
||||
mca_ptl_prof_la_SOURCES =
|
||||
mca_ptl_prof_la_LIBADD = \
|
||||
src/libmca_ptl_prof.la \
|
||||
$(LIBOMPI_LA)
|
||||
mcacomponentdir = $(libdir)/openmpi
|
||||
mcacomponent_LTLIBRARIES = $(component_install)
|
||||
mca_ptl_prof_la_SOURCES = $(prof_la_SOURCES)
|
||||
mca_ptl_prof_la_LIBADD = $(LIBOMPI_LA)
|
||||
mca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
noinst_LTLIBRARIES = $(module_noinst)
|
||||
libmca_ptl_prof_la_SOURCES =
|
||||
libmca_ptl_prof_la_LIBADD = src/libmca_ptl_prof.la
|
||||
noinst_LTLIBRARIES = $(component_noinst)
|
||||
libmca_ptl_prof_la_SOURCES = $(prof_la_SOURCES)
|
||||
libmca_ptl_prof_la_LIBADD =
|
||||
libmca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||||
|
||||
|
@ -83,16 +83,21 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
mkinstalldirs = $(mkdir_p)
|
||||
CONFIG_HEADER = $(top_builddir)/include/ompi_config.h
|
||||
CONFIG_CLEAN_FILES = ptl-prof-version.h.template
|
||||
am__installdirs = "$(DESTDIR)$(mcamoduledir)"
|
||||
mcamoduleLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(mcamodule_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
||||
libmca_ptl_prof_la_DEPENDENCIES = src/libmca_ptl_prof.la
|
||||
am_libmca_ptl_prof_la_OBJECTS =
|
||||
am__installdirs = "$(DESTDIR)$(mcacomponentdir)"
|
||||
mcacomponentLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(mcacomponent_LTLIBRARIES) $(noinst_LTLIBRARIES)
|
||||
libmca_ptl_prof_la_DEPENDENCIES =
|
||||
am__objects_1 = ptl_prof.lo ptl_prof_component.lo
|
||||
am_libmca_ptl_prof_la_OBJECTS = $(am__objects_1)
|
||||
libmca_ptl_prof_la_OBJECTS = $(am_libmca_ptl_prof_la_OBJECTS)
|
||||
mca_ptl_prof_la_DEPENDENCIES = src/libmca_ptl_prof.la
|
||||
am_mca_ptl_prof_la_OBJECTS =
|
||||
mca_ptl_prof_la_DEPENDENCIES =
|
||||
am_mca_ptl_prof_la_OBJECTS = $(am__objects_1)
|
||||
mca_ptl_prof_la_OBJECTS = $(am_mca_ptl_prof_la_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/include
|
||||
depcomp = $(SHELL) $(top_srcdir)/./config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ptl_prof.Plo \
|
||||
@AMDEP_TRUE@ ./$(DEPDIR)/ptl_prof_component.Plo
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
|
||||
@ -104,15 +109,8 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
SOURCES = $(libmca_ptl_prof_la_SOURCES) $(mca_ptl_prof_la_SOURCES)
|
||||
DIST_SOURCES = $(libmca_ptl_prof_la_SOURCES) \
|
||||
$(mca_ptl_prof_la_SOURCES)
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-exec-recursive install-info-recursive \
|
||||
install-recursive installcheck-recursive installdirs-recursive \
|
||||
pdf-recursive ps-recursive uninstall-info-recursive \
|
||||
uninstall-recursive
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
@ -383,31 +381,37 @@ sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_ompi_builddir = @top_ompi_builddir@
|
||||
top_ompi_srcdir = @top_ompi_srcdir@
|
||||
SUBDIRS = src
|
||||
EXTRA_DIST = VERSION
|
||||
@OMPI_BUILD_ptl_prof_DSO_FALSE@module_noinst = libmca_ptl_prof.la
|
||||
|
||||
# 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
|
||||
@OMPI_BUILD_ptl_prof_DSO_TRUE@module_noinst =
|
||||
@OMPI_BUILD_ptl_prof_DSO_FALSE@module_install =
|
||||
@OMPI_BUILD_ptl_prof_DSO_TRUE@module_install = mca_ptl_prof.la
|
||||
mcamoduledir = $(libdir)/ompi
|
||||
mcamodule_LTLIBRARIES = $(module_install)
|
||||
mca_ptl_prof_la_SOURCES =
|
||||
mca_ptl_prof_la_LIBADD = \
|
||||
src/libmca_ptl_prof.la \
|
||||
$(LIBOMPI_LA)
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_ompi_builddir)/src/include \
|
||||
-I$(top_ompi_builddir)/src/ompi/event \
|
||||
-I$(top_ompi_srcdir)/src \
|
||||
-I$(top_ompi_srcdir)/src/include
|
||||
|
||||
prof_la_SOURCES = ptl_prof.c ptl_prof.h \
|
||||
ptl_prof_component.c
|
||||
|
||||
@OMPI_BUILD_ptl_prof_DSO_FALSE@component_noinst = libmca_ptl_prof.la
|
||||
@OMPI_BUILD_ptl_prof_DSO_TRUE@component_noinst =
|
||||
@OMPI_BUILD_ptl_prof_DSO_FALSE@component_install =
|
||||
@OMPI_BUILD_ptl_prof_DSO_TRUE@component_install = mca_ptl_prof.la
|
||||
mcacomponentdir = $(libdir)/openmpi
|
||||
mcacomponent_LTLIBRARIES = $(component_install)
|
||||
mca_ptl_prof_la_SOURCES = $(prof_la_SOURCES)
|
||||
mca_ptl_prof_la_LIBADD = $(LIBOMPI_LA)
|
||||
mca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||||
noinst_LTLIBRARIES = $(module_noinst)
|
||||
libmca_ptl_prof_la_SOURCES =
|
||||
libmca_ptl_prof_la_LIBADD = src/libmca_ptl_prof.la
|
||||
noinst_LTLIBRARIES = $(component_noinst)
|
||||
libmca_ptl_prof_la_SOURCES = $(prof_la_SOURCES)
|
||||
libmca_ptl_prof_la_LIBADD =
|
||||
libmca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||||
all: all-recursive
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
@ -439,28 +443,28 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
ptl-prof-version.h.template: $(top_builddir)/config.status $(srcdir)/ptl-prof-version.h.template.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
||||
install-mcamoduleLTLIBRARIES: $(mcamodule_LTLIBRARIES)
|
||||
install-mcacomponentLTLIBRARIES: $(mcacomponent_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(mcamoduledir)" || $(mkdir_p) "$(DESTDIR)$(mcamoduledir)"
|
||||
@list='$(mcamodule_LTLIBRARIES)'; for p in $$list; do \
|
||||
test -z "$(mcacomponentdir)" || $(mkdir_p) "$(DESTDIR)$(mcacomponentdir)"
|
||||
@list='$(mcacomponent_LTLIBRARIES)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
f="`echo $$p | sed -e 's|^.*/||'`"; \
|
||||
echo " $(LIBTOOL) --mode=install $(mcamoduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(mcamoduledir)/$$f'"; \
|
||||
$(LIBTOOL) --mode=install $(mcamoduleLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(mcamoduledir)/$$f"; \
|
||||
echo " $(LIBTOOL) --mode=install $(mcacomponentLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(mcacomponentdir)/$$f'"; \
|
||||
$(LIBTOOL) --mode=install $(mcacomponentLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(mcacomponentdir)/$$f"; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
uninstall-mcamoduleLTLIBRARIES:
|
||||
uninstall-mcacomponentLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(mcamodule_LTLIBRARIES)'; for p in $$list; do \
|
||||
@list='$(mcacomponent_LTLIBRARIES)'; for p in $$list; do \
|
||||
p="`echo $$p | sed -e 's|^.*/||'`"; \
|
||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(mcamoduledir)/$$p'"; \
|
||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(mcamoduledir)/$$p"; \
|
||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(mcacomponentdir)/$$p'"; \
|
||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(mcacomponentdir)/$$p"; \
|
||||
done
|
||||
|
||||
clean-mcamoduleLTLIBRARIES:
|
||||
-test -z "$(mcamodule_LTLIBRARIES)" || rm -f $(mcamodule_LTLIBRARIES)
|
||||
@list='$(mcamodule_LTLIBRARIES)'; for p in $$list; do \
|
||||
clean-mcacomponentLTLIBRARIES:
|
||||
-test -z "$(mcacomponent_LTLIBRARIES)" || rm -f $(mcacomponent_LTLIBRARIES)
|
||||
@list='$(mcacomponent_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
@ -478,7 +482,7 @@ clean-noinstLTLIBRARIES:
|
||||
libmca_ptl_prof.la: $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_DEPENDENCIES)
|
||||
$(LINK) $(libmca_ptl_prof_la_LDFLAGS) $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
mca_ptl_prof.la: $(mca_ptl_prof_la_OBJECTS) $(mca_ptl_prof_la_DEPENDENCIES)
|
||||
$(LINK) -rpath $(mcamoduledir) $(mca_ptl_prof_la_LDFLAGS) $(mca_ptl_prof_la_OBJECTS) $(mca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
$(LINK) -rpath $(mcacomponentdir) $(mca_ptl_prof_la_LDFLAGS) $(mca_ptl_prof_la_OBJECTS) $(mca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
@ -486,6 +490,33 @@ mostlyclean-compile:
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptl_prof.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptl_prof_component.Plo@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
@ -496,65 +527,6 @@ distclean-libtool:
|
||||
-rm -f libtool
|
||||
uninstall-info-am:
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@set fnord $$MAKEFLAGS; amf=$$2; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||
maintainer-clean-recursive:
|
||||
@set fnord $$MAKEFLAGS; amf=$$2; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
@ -565,23 +537,10 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
@ -594,7 +553,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
@ -643,36 +602,22 @@ distdir: $(DISTFILES)
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d "$(distdir)/$$subdir" \
|
||||
|| mkdir "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
(cd $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="../$(top_distdir)" \
|
||||
distdir="../$(distdir)/$$subdir" \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
for dir in "$(DESTDIR)$(mcamoduledir)"; do \
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(mcacomponentdir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
done
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
@ -689,72 +634,70 @@ distclean-generic:
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-mcamoduleLTLIBRARIES \
|
||||
clean-am: clean-generic clean-libtool clean-mcacomponentLTLIBRARIES \
|
||||
clean-noinstLTLIBRARIES mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
html: html-am
|
||||
|
||||
info: info-recursive
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-mcamoduleLTLIBRARIES
|
||||
install-data-am: install-mcacomponentLTLIBRARIES
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am uninstall-mcamoduleLTLIBRARIES
|
||||
uninstall-am: uninstall-info-am uninstall-mcacomponentLTLIBRARIES
|
||||
|
||||
uninstall-info: uninstall-info-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
|
||||
clean clean-generic clean-libtool clean-mcamoduleLTLIBRARIES \
|
||||
clean-noinstLTLIBRARIES clean-recursive ctags ctags-recursive \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-recursive distclean-tags distdir \
|
||||
dvi dvi-am html html-am info info-am install install-am \
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-mcacomponentLTLIBRARIES \
|
||||
clean-noinstLTLIBRARIES ctags distclean distclean-compile \
|
||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-exec install-exec-am \
|
||||
install-info install-info-am install-man \
|
||||
install-mcamoduleLTLIBRARIES install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic maintainer-clean-recursive \
|
||||
mostlyclean mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
|
||||
tags tags-recursive uninstall uninstall-am uninstall-info-am \
|
||||
uninstall-mcamoduleLTLIBRARIES
|
||||
install-mcacomponentLTLIBRARIES install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am uninstall-info-am \
|
||||
uninstall-mcacomponentLTLIBRARIES
|
||||
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
@ -1,19 +0,0 @@
|
||||
/*
|
||||
* This file is automatically created by autogen.sh; it should not
|
||||
* be edited by hand!!
|
||||
*
|
||||
* List of version number for this component
|
||||
*/
|
||||
|
||||
#ifndef MCA_ptl_prof_VERSION_H
|
||||
#define MCA_ptl_prof_VERSION_H
|
||||
|
||||
#define MCA_ptl_prof_MAJOR_VERSION 1
|
||||
#define MCA_ptl_prof_MINOR_VERSION 0
|
||||
#define MCA_ptl_prof_RELEASE_VERSION 0
|
||||
#define MCA_ptl_prof_ALPHA_VERSION 0
|
||||
#define MCA_ptl_prof_BETA_VERSION 0
|
||||
#define MCA_ptl_prof_SVN_VERSION "svn08102004"
|
||||
#define MCA_ptl_prof_FULL_VERSION "1.0svn08102004"
|
||||
|
||||
#endif /* MCA_ptl_prof_VERSION_H */
|
@ -1,19 +0,0 @@
|
||||
/*
|
||||
* This file is automatically created by autogen.sh; it should not
|
||||
* be edited by hand!!
|
||||
*
|
||||
* List of version number for this component
|
||||
*/
|
||||
|
||||
#ifndef MCA_ptl_prof_VERSION_H
|
||||
#define MCA_ptl_prof_VERSION_H
|
||||
|
||||
#define MCA_ptl_prof_MAJOR_VERSION 1
|
||||
#define MCA_ptl_prof_MINOR_VERSION 0
|
||||
#define MCA_ptl_prof_RELEASE_VERSION 0
|
||||
#define MCA_ptl_prof_ALPHA_VERSION 0
|
||||
#define MCA_ptl_prof_BETA_VERSION 0
|
||||
#define MCA_ptl_prof_SVN_VERSION "svn08102004"
|
||||
#define MCA_ptl_prof_FULL_VERSION "1.0svn08102004"
|
||||
|
||||
#endif /* MCA_ptl_prof_VERSION_H */
|
@ -1,19 +0,0 @@
|
||||
/*
|
||||
* This file is automatically created by autogen.sh; it should not
|
||||
* be edited by hand!!
|
||||
*
|
||||
* List of version number for this component
|
||||
*/
|
||||
|
||||
#ifndef MCA_ptl_prof_VERSION_H
|
||||
#define MCA_ptl_prof_VERSION_H
|
||||
|
||||
#define MCA_ptl_prof_MAJOR_VERSION @MCA_ptl_prof_MAJOR_VERSION@
|
||||
#define MCA_ptl_prof_MINOR_VERSION @MCA_ptl_prof_MINOR_VERSION@
|
||||
#define MCA_ptl_prof_RELEASE_VERSION @MCA_ptl_prof_RELEASE_VERSION@
|
||||
#define MCA_ptl_prof_ALPHA_VERSION @MCA_ptl_prof_ALPHA_VERSION@
|
||||
#define MCA_ptl_prof_BETA_VERSION @MCA_ptl_prof_BETA_VERSION@
|
||||
#define MCA_ptl_prof_SVN_VERSION "@MCA_ptl_prof_SVN_VERSION@"
|
||||
#define MCA_ptl_prof_FULL_VERSION "@MCA_ptl_prof_FULL_VERSION@"
|
||||
|
||||
#endif /* MCA_ptl_prof_VERSION_H */
|
@ -1,646 +0,0 @@
|
||||
# Makefile.in generated by automake 1.8.5 from Makefile.am.
|
||||
# src/mca/ptl/prof/src/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
# -*- makefile -*-
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
SOURCES = $(libmca_ptl_prof_la_SOURCES)
|
||||
|
||||
srcdir = .
|
||||
top_srcdir = ../../../../..
|
||||
|
||||
pkgdatadir = $(datadir)/openmpi
|
||||
pkglibdir = $(libdir)/openmpi
|
||||
pkgincludedir = $(includedir)/openmpi
|
||||
top_builddir = ../../../../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = /usr/bin/install -c
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_triplet = i686-pc-linux-gnu
|
||||
subdir = src/mca/ptl/prof/src
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/config/c_get_alignment.m4 \
|
||||
$(top_srcdir)/config/c_weak_symbols.m4 \
|
||||
$(top_srcdir)/config/cxx_find_template_parameters.m4 \
|
||||
$(top_srcdir)/config/cxx_find_template_repository.m4 \
|
||||
$(top_srcdir)/config/cxx_have_exceptions.m4 \
|
||||
$(top_srcdir)/config/cxx_find_exception_flags.m4 \
|
||||
$(top_srcdir)/config/f77_find_ext_symbol_convention.m4 \
|
||||
$(top_srcdir)/config/f77_get_alignment.m4 \
|
||||
$(top_srcdir)/config/f77_get_sizeof.m4 \
|
||||
$(top_srcdir)/config/ompi_case_sensitive_fs_setup.m4 \
|
||||
$(top_srcdir)/config/ompi_check_optflags.m4 \
|
||||
$(top_srcdir)/config/ompi_config_subdir.m4 \
|
||||
$(top_srcdir)/config/ompi_config_subdir_args.m4 \
|
||||
$(top_srcdir)/config/ompi_configure_options.m4 \
|
||||
$(top_srcdir)/config/ompi_find_type.m4 \
|
||||
$(top_srcdir)/config/ompi_functions.m4 \
|
||||
$(top_srcdir)/config/ompi_get_version.m4 \
|
||||
$(top_srcdir)/config/ompi_get_libtool_linker_flags.m4 \
|
||||
$(top_srcdir)/config/ompi_mca.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_cc.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_cxx.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_f77.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_f90.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_libevent.m4 \
|
||||
$(top_srcdir)/config/ompi_check_pthread_pids.m4 \
|
||||
$(top_srcdir)/config/ompi_config_pthreads.m4 \
|
||||
$(top_srcdir)/config/ompi_config_solaris_threads.m4 \
|
||||
$(top_srcdir)/config/ompi_config_threads.m4 \
|
||||
$(top_srcdir)/config/mca_no_configure_components.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(mkdir_p)
|
||||
CONFIG_HEADER = $(top_builddir)/include/ompi_config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
||||
libmca_ptl_prof_la_LIBADD =
|
||||
am_libmca_ptl_prof_la_OBJECTS = ptl_prof.lo ptl_prof_module.lo
|
||||
libmca_ptl_prof_la_OBJECTS = $(am_libmca_ptl_prof_la_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/include
|
||||
depcomp = $(SHELL) $(top_srcdir)/./config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
DEP_FILES = ./$(DEPDIR)/ptl_prof.Plo \
|
||||
./$(DEPDIR)/ptl_prof_module.Plo
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
SOURCES = $(libmca_ptl_prof_la_SOURCES)
|
||||
DIST_SOURCES = $(libmca_ptl_prof_la_SOURCES)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /home/bosilca/ompi/config/missing --run aclocal-1.8
|
||||
AMDEP_FALSE = #
|
||||
AMDEP_TRUE =
|
||||
AMTAR = ${SHELL} /home/bosilca/ompi/config/missing --run tar
|
||||
AR = ar
|
||||
AUTOCONF = ${SHELL} /home/bosilca/ompi/config/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /home/bosilca/ompi/config/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /home/bosilca/ompi/config/missing --run automake-1.8
|
||||
AWK = gawk
|
||||
CASE_SENSITIVE_FS_FALSE = #
|
||||
CASE_SENSITIVE_FS_TRUE =
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -Wall -Wundef -Wno-long-long -Wmissing-prototypes -Wstrict-prototypes -Wcomment -pedantic -Werror-implicit-function-declaration -finline-functions -pthread
|
||||
CLEANFILES = *~ .\#*
|
||||
COMPILE_PROFILING_SEPARATELY_FALSE =
|
||||
COMPILE_PROFILING_SEPARATELY_TRUE = #
|
||||
CPP = gcc -E
|
||||
CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src -DOMPI_BUILDING=1
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXCPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -Wall -Wundef -Wno-long-long -Wmissing-prototypes -Wstrict-prototypes -finline-functions -pthread
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
ECHO = echo
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = grep -E
|
||||
EXEEXT =
|
||||
F77 = g77
|
||||
FC = g77
|
||||
FCFLAGS =
|
||||
FCFLAGS_f =
|
||||
FCFLAGS_f90 =
|
||||
FCFLAGS_f95 =
|
||||
FFLAGS =
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
||||
LDFLAGS = -export-dynamic
|
||||
LEX = flex
|
||||
LEXLIB = -lfl
|
||||
LEX_OUTPUT_ROOT = lex.yy
|
||||
LIBLTDL = ${top_builddir}/src/libltdl/libltdlc.la
|
||||
LIBLTDL_LTLIB = libltdl/libltdlc.la
|
||||
LIBLTDL_SUBDIR = libltdl
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LN_S = ln -s
|
||||
LTDLINCL = -I${top_srcdir}/src/libltdl
|
||||
LTLIBOBJS =
|
||||
MAKEINFO = ${SHELL} /home/bosilca/ompi/config/missing --run makeinfo
|
||||
MCA_allocator_ALL_SUBDIRS = bucket
|
||||
MCA_allocator_DSO_SUBDIRS = bucket
|
||||
MCA_allocator_STATIC_LTLIBS =
|
||||
MCA_allocator_STATIC_SUBDIRS =
|
||||
MCA_coll_ALL_SUBDIRS = basic
|
||||
MCA_coll_DSO_SUBDIRS = basic
|
||||
MCA_coll_STATIC_LTLIBS =
|
||||
MCA_coll_STATIC_SUBDIRS =
|
||||
MCA_coll_basic_ALPHA_VERSION = 0
|
||||
MCA_coll_basic_BETA_VERSION = 0
|
||||
MCA_coll_basic_FULL_VERSION = 10.0r2003
|
||||
MCA_coll_basic_MAJOR_VERSION = 10
|
||||
MCA_coll_basic_MINOR_VERSION = 0
|
||||
MCA_coll_basic_RELEASE_VERSION = 0
|
||||
MCA_coll_basic_SVN_VERSION = r2003
|
||||
MCA_common_ALL_SUBDIRS = sm
|
||||
MCA_common_DSO_SUBDIRS = sm
|
||||
MCA_common_STATIC_LTLIBS =
|
||||
MCA_common_STATIC_SUBDIRS =
|
||||
MCA_gpr_ALL_SUBDIRS =
|
||||
MCA_gpr_DSO_SUBDIRS =
|
||||
MCA_gpr_STATIC_LTLIBS =
|
||||
MCA_gpr_STATIC_SUBDIRS =
|
||||
MCA_io_ALL_SUBDIRS =
|
||||
MCA_io_DSO_SUBDIRS =
|
||||
MCA_io_STATIC_LTLIBS =
|
||||
MCA_io_STATIC_SUBDIRS =
|
||||
MCA_llm_ALL_SUBDIRS = hostfile
|
||||
MCA_llm_DSO_SUBDIRS = hostfile
|
||||
MCA_llm_STATIC_LTLIBS =
|
||||
MCA_llm_STATIC_SUBDIRS =
|
||||
MCA_llm_hostfile_ALPHA_VERSION = 0
|
||||
MCA_llm_hostfile_BETA_VERSION = 0
|
||||
MCA_llm_hostfile_FULL_VERSION = 1.0r2003
|
||||
MCA_llm_hostfile_MAJOR_VERSION = 1
|
||||
MCA_llm_hostfile_MINOR_VERSION = 0
|
||||
MCA_llm_hostfile_RELEASE_VERSION = 0
|
||||
MCA_llm_hostfile_SVN_VERSION = r2003
|
||||
MCA_mpool_ALL_SUBDIRS =
|
||||
MCA_mpool_DSO_SUBDIRS =
|
||||
MCA_mpool_STATIC_LTLIBS =
|
||||
MCA_mpool_STATIC_SUBDIRS =
|
||||
MCA_ns_ALL_SUBDIRS = proxy replica
|
||||
MCA_ns_DSO_SUBDIRS = proxy replica
|
||||
MCA_ns_STATIC_LTLIBS =
|
||||
MCA_ns_STATIC_SUBDIRS =
|
||||
MCA_one_ALL_SUBDIRS =
|
||||
MCA_one_DSO_SUBDIRS =
|
||||
MCA_one_STATIC_LTLIBS =
|
||||
MCA_one_STATIC_SUBDIRS =
|
||||
MCA_oob_ALL_SUBDIRS = cofs tcp
|
||||
MCA_oob_DSO_SUBDIRS = cofs tcp
|
||||
MCA_oob_STATIC_LTLIBS =
|
||||
MCA_oob_STATIC_SUBDIRS =
|
||||
MCA_pcm_ALL_SUBDIRS = cofs rsh
|
||||
MCA_pcm_DSO_SUBDIRS = cofs rsh
|
||||
MCA_pcm_STATIC_LTLIBS =
|
||||
MCA_pcm_STATIC_SUBDIRS =
|
||||
MCA_pml_ALL_SUBDIRS = teg
|
||||
MCA_pml_DSO_SUBDIRS = teg
|
||||
MCA_pml_STATIC_LTLIBS =
|
||||
MCA_pml_STATIC_SUBDIRS =
|
||||
MCA_ptl_ALL_SUBDIRS = prof self tcp
|
||||
MCA_ptl_DSO_SUBDIRS = prof self tcp
|
||||
MCA_ptl_STATIC_LTLIBS =
|
||||
MCA_ptl_STATIC_SUBDIRS =
|
||||
MCA_ptl_prof_ALPHA_VERSION = 0
|
||||
MCA_ptl_prof_BETA_VERSION = 0
|
||||
MCA_ptl_prof_FULL_VERSION = 1.0svn08102004
|
||||
MCA_ptl_prof_MAJOR_VERSION = 1
|
||||
MCA_ptl_prof_MINOR_VERSION = 0
|
||||
MCA_ptl_prof_RELEASE_VERSION = 0
|
||||
MCA_ptl_prof_SVN_VERSION = svn08102004
|
||||
MCA_topo_ALL_SUBDIRS = unity
|
||||
MCA_topo_DSO_SUBDIRS = unity
|
||||
MCA_topo_STATIC_LTLIBS =
|
||||
MCA_topo_STATIC_SUBDIRS =
|
||||
MCA_topo_unity_ALPHA_VERSION = 0
|
||||
MCA_topo_unity_BETA_VERSION = 0
|
||||
MCA_topo_unity_FULL_VERSION = 10.0r2003
|
||||
MCA_topo_unity_MAJOR_VERSION = 10
|
||||
MCA_topo_unity_MINOR_VERSION = 0
|
||||
MCA_topo_unity_RELEASE_VERSION = 0
|
||||
MCA_topo_unity_SVN_VERSION = r2003
|
||||
OBJEXT = o
|
||||
OMPI_ALPHA_VERSION = 1
|
||||
OMPI_BETA_VERSION = 0
|
||||
OMPI_BUILD_allocator_bucket_DSO_FALSE = #
|
||||
OMPI_BUILD_allocator_bucket_DSO_TRUE =
|
||||
OMPI_BUILD_coll_basic_DSO_FALSE = #
|
||||
OMPI_BUILD_coll_basic_DSO_TRUE =
|
||||
OMPI_BUILD_common_sm_DSO_FALSE = #
|
||||
OMPI_BUILD_common_sm_DSO_TRUE =
|
||||
OMPI_BUILD_llm_hostfile_DSO_FALSE = #
|
||||
OMPI_BUILD_llm_hostfile_DSO_TRUE =
|
||||
OMPI_BUILD_ns_proxy_DSO_FALSE = #
|
||||
OMPI_BUILD_ns_proxy_DSO_TRUE =
|
||||
OMPI_BUILD_ns_replica_DSO_FALSE = #
|
||||
OMPI_BUILD_ns_replica_DSO_TRUE =
|
||||
OMPI_BUILD_oob_cofs_DSO_FALSE = #
|
||||
OMPI_BUILD_oob_cofs_DSO_TRUE =
|
||||
OMPI_BUILD_oob_tcp_DSO_FALSE = #
|
||||
OMPI_BUILD_oob_tcp_DSO_TRUE =
|
||||
OMPI_BUILD_pcm_cofs_DSO_FALSE = #
|
||||
OMPI_BUILD_pcm_cofs_DSO_TRUE =
|
||||
OMPI_BUILD_pcm_rsh_DSO_FALSE = #
|
||||
OMPI_BUILD_pcm_rsh_DSO_TRUE =
|
||||
OMPI_BUILD_pml_teg_DSO_FALSE = #
|
||||
OMPI_BUILD_pml_teg_DSO_TRUE =
|
||||
OMPI_BUILD_ptl_prof_DSO_FALSE = #
|
||||
OMPI_BUILD_ptl_prof_DSO_TRUE =
|
||||
OMPI_BUILD_ptl_self_DSO_FALSE = #
|
||||
OMPI_BUILD_ptl_self_DSO_TRUE =
|
||||
OMPI_BUILD_ptl_tcp_DSO_FALSE = #
|
||||
OMPI_BUILD_ptl_tcp_DSO_TRUE =
|
||||
OMPI_BUILD_topo_unity_DSO_FALSE = #
|
||||
OMPI_BUILD_topo_unity_DSO_TRUE =
|
||||
OMPI_CONFIGURE_DATE = Tue Aug 10 14:16:32 EDT 2004
|
||||
OMPI_CONFIGURE_HOST = earth
|
||||
OMPI_CONFIGURE_USER = bosilca
|
||||
OMPI_LIBEVENT_SOURCES = signal.c poll.c select.c
|
||||
OMPI_MAJOR_VERSION = 10
|
||||
OMPI_MINOR_VERSION = 0
|
||||
OMPI_RELEASE_VERSION = 0
|
||||
OMPI_SVN_VERSION = r2003
|
||||
OMPI_TOP_BUILDDIR = /home/bosilca/ompi
|
||||
OMPI_TOP_SRCDIR = /home/bosilca/ompi
|
||||
OMPI_VERSION = 10.0a1r2003
|
||||
OMPI_WANT_F77_BINDINGS_FALSE = #
|
||||
OMPI_WANT_F77_BINDINGS_TRUE =
|
||||
OMPI_WANT_F90_BINDINGS_FALSE =
|
||||
OMPI_WANT_F90_BINDINGS_TRUE = #
|
||||
PACKAGE = openmpi
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME =
|
||||
PACKAGE_STRING =
|
||||
PACKAGE_TARNAME =
|
||||
PACKAGE_VERSION =
|
||||
PATH_SEPARATOR = :
|
||||
RANLIB = ranlib
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
VERSION = 10.0a1r2003
|
||||
WANT_DEPRECATED_EXECUTABLE_NAMES_FALSE =
|
||||
WANT_DEPRECATED_EXECUTABLE_NAMES_TRUE = #
|
||||
WANT_INSTALL_HEADERS_FALSE =
|
||||
WANT_INSTALL_HEADERS_TRUE = #
|
||||
WANT_LIBLTDL_FALSE = #
|
||||
WANT_LIBLTDL_TRUE =
|
||||
WANT_MPI_BINDINGS_LAYER_FALSE =
|
||||
WANT_MPI_BINDINGS_LAYER_TRUE = #
|
||||
WANT_MPI_CXX_BINDINGS_FALSE =
|
||||
WANT_MPI_CXX_BINDINGS_TRUE = #
|
||||
WANT_MPI_F77_BINDINGS_LAYER_FALSE =
|
||||
WANT_MPI_F77_BINDINGS_LAYER_TRUE = #
|
||||
WANT_PMPI_BINDINGS_LAYER_FALSE = #
|
||||
WANT_PMPI_BINDINGS_LAYER_TRUE =
|
||||
WANT_PMPI_F77_BINDINGS_LAYER_FALSE = #
|
||||
WANT_PMPI_F77_BINDINGS_LAYER_TRUE =
|
||||
WRAPPER_EXTRA_CFLAGS = -pthread
|
||||
WRAPPER_EXTRA_CXXFLAGS = -pthread
|
||||
WRAPPER_EXTRA_FCFLAGS = -pthread
|
||||
WRAPPER_EXTRA_FFLAGS = -pthread
|
||||
WRAPPER_EXTRA_LDFLAGS =
|
||||
WRAPPER_EXTRA_LIBS = -Wl,--export-dynamic -ldl
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_F77 = g77
|
||||
ac_ct_FC = g77
|
||||
ac_ct_RANLIB = ranlib
|
||||
ac_ct_STRIP = strip
|
||||
ac_prefix_program =
|
||||
am__fastdepCC_FALSE = #
|
||||
am__fastdepCC_TRUE =
|
||||
am__fastdepCXX_FALSE = #
|
||||
am__fastdepCXX_TRUE =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = i686-pc-linux-gnu
|
||||
build_alias =
|
||||
build_cpu = i686
|
||||
build_os = linux-gnu
|
||||
build_vendor = pc
|
||||
datadir = ${prefix}/share
|
||||
exec_prefix = ${prefix}
|
||||
host = i686-pc-linux-gnu
|
||||
host_alias =
|
||||
host_cpu = i686
|
||||
host_os = linux-gnu
|
||||
host_vendor = pc
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${prefix}/info
|
||||
install_sh = /home/bosilca/ompi/config/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${prefix}/man
|
||||
mkdir_p = mkdir -p -- .
|
||||
oldincludedir = /usr/include
|
||||
prefix = /home/bosilca/opt/ompi/
|
||||
program_transform_name = s,x,x,
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_ompi_builddir = /home/bosilca/ompi
|
||||
top_ompi_srcdir = /home/bosilca/ompi
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_ompi_builddir)/src/include \
|
||||
-I$(top_ompi_builddir)/src/ompi/event \
|
||||
-I$(top_ompi_srcdir)/src \
|
||||
-I$(top_ompi_srcdir)/src/include
|
||||
|
||||
noinst_LTLIBRARIES = libmca_ptl_prof.la
|
||||
libmca_ptl_prof_la_SOURCES = \
|
||||
ptl_prof.c \
|
||||
ptl_prof.h \
|
||||
ptl_prof_module.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/mca/ptl/prof/src/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign src/mca/ptl/prof/src/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
clean-noinstLTLIBRARIES:
|
||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libmca_ptl_prof.la: $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_DEPENDENCIES)
|
||||
$(LINK) $(libmca_ptl_prof_la_LDFLAGS) $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/ptl_prof.Plo
|
||||
include ./$(DEPDIR)/ptl_prof_module.Plo
|
||||
|
||||
.c.o:
|
||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
|
||||
# $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \
|
||||
# $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
|
||||
# $(CCDEPMODE) $(depcomp) \
|
||||
# $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool
|
||||
uninstall-info-am:
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-noinstLTLIBRARIES ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-exec \
|
||||
install-exec-am install-info install-info-am install-man \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags uninstall uninstall-am \
|
||||
uninstall-info-am
|
||||
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,18 +0,0 @@
|
||||
# -*- makefile -*-
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_ompi_builddir)/src/include \
|
||||
-I$(top_ompi_builddir)/src/ompi/event \
|
||||
-I$(top_ompi_srcdir)/src \
|
||||
-I$(top_ompi_srcdir)/src/include
|
||||
|
||||
noinst_LTLIBRARIES = libmca_ptl_prof.la
|
||||
libmca_ptl_prof_la_SOURCES = \
|
||||
ptl_prof.c \
|
||||
ptl_prof.h \
|
||||
ptl_prof_module.c
|
@ -1,646 +0,0 @@
|
||||
# Makefile.in generated by automake 1.8.5 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# -*- makefile -*-
|
||||
#
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
SOURCES = $(libmca_ptl_prof_la_SOURCES)
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ../../../../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_triplet = @host@
|
||||
subdir = src/mca/ptl/prof/src
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/config/c_get_alignment.m4 \
|
||||
$(top_srcdir)/config/c_weak_symbols.m4 \
|
||||
$(top_srcdir)/config/cxx_find_template_parameters.m4 \
|
||||
$(top_srcdir)/config/cxx_find_template_repository.m4 \
|
||||
$(top_srcdir)/config/cxx_have_exceptions.m4 \
|
||||
$(top_srcdir)/config/cxx_find_exception_flags.m4 \
|
||||
$(top_srcdir)/config/f77_find_ext_symbol_convention.m4 \
|
||||
$(top_srcdir)/config/f77_get_alignment.m4 \
|
||||
$(top_srcdir)/config/f77_get_sizeof.m4 \
|
||||
$(top_srcdir)/config/ompi_case_sensitive_fs_setup.m4 \
|
||||
$(top_srcdir)/config/ompi_check_optflags.m4 \
|
||||
$(top_srcdir)/config/ompi_config_subdir.m4 \
|
||||
$(top_srcdir)/config/ompi_config_subdir_args.m4 \
|
||||
$(top_srcdir)/config/ompi_configure_options.m4 \
|
||||
$(top_srcdir)/config/ompi_find_type.m4 \
|
||||
$(top_srcdir)/config/ompi_functions.m4 \
|
||||
$(top_srcdir)/config/ompi_get_version.m4 \
|
||||
$(top_srcdir)/config/ompi_get_libtool_linker_flags.m4 \
|
||||
$(top_srcdir)/config/ompi_mca.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_cc.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_cxx.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_f77.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_f90.m4 \
|
||||
$(top_srcdir)/config/ompi_setup_libevent.m4 \
|
||||
$(top_srcdir)/config/ompi_check_pthread_pids.m4 \
|
||||
$(top_srcdir)/config/ompi_config_pthreads.m4 \
|
||||
$(top_srcdir)/config/ompi_config_solaris_threads.m4 \
|
||||
$(top_srcdir)/config/ompi_config_threads.m4 \
|
||||
$(top_srcdir)/config/mca_no_configure_components.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(mkdir_p)
|
||||
CONFIG_HEADER = $(top_builddir)/include/ompi_config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
||||
libmca_ptl_prof_la_LIBADD =
|
||||
am_libmca_ptl_prof_la_OBJECTS = ptl_prof.lo ptl_prof_module.lo
|
||||
libmca_ptl_prof_la_OBJECTS = $(am_libmca_ptl_prof_la_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/include
|
||||
depcomp = $(SHELL) $(top_srcdir)/./config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ptl_prof.Plo \
|
||||
@AMDEP_TRUE@ ./$(DEPDIR)/ptl_prof_module.Plo
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
SOURCES = $(libmca_ptl_prof_la_SOURCES)
|
||||
DIST_SOURCES = $(libmca_ptl_prof_la_SOURCES)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CASE_SENSITIVE_FS_FALSE = @CASE_SENSITIVE_FS_FALSE@
|
||||
CASE_SENSITIVE_FS_TRUE = @CASE_SENSITIVE_FS_TRUE@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CLEANFILES = @CLEANFILES@
|
||||
COMPILE_PROFILING_SEPARATELY_FALSE = @COMPILE_PROFILING_SEPARATELY_FALSE@
|
||||
COMPILE_PROFILING_SEPARATELY_TRUE = @COMPILE_PROFILING_SEPARATELY_TRUE@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXCPPFLAGS = @CXXCPPFLAGS@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO = @ECHO@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
F77 = @F77@
|
||||
FC = @FC@
|
||||
FCFLAGS = @FCFLAGS@
|
||||
FCFLAGS_f = @FCFLAGS_f@
|
||||
FCFLAGS_f90 = @FCFLAGS_f90@
|
||||
FCFLAGS_f95 = @FCFLAGS_f95@
|
||||
FFLAGS = @FFLAGS@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBLTDL = @LIBLTDL@
|
||||
LIBLTDL_LTLIB = @LIBLTDL_LTLIB@
|
||||
LIBLTDL_SUBDIR = @LIBLTDL_SUBDIR@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LN_S = @LN_S@
|
||||
LTDLINCL = @LTDLINCL@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MCA_allocator_ALL_SUBDIRS = @MCA_allocator_ALL_SUBDIRS@
|
||||
MCA_allocator_DSO_SUBDIRS = @MCA_allocator_DSO_SUBDIRS@
|
||||
MCA_allocator_STATIC_LTLIBS = @MCA_allocator_STATIC_LTLIBS@
|
||||
MCA_allocator_STATIC_SUBDIRS = @MCA_allocator_STATIC_SUBDIRS@
|
||||
MCA_coll_ALL_SUBDIRS = @MCA_coll_ALL_SUBDIRS@
|
||||
MCA_coll_DSO_SUBDIRS = @MCA_coll_DSO_SUBDIRS@
|
||||
MCA_coll_STATIC_LTLIBS = @MCA_coll_STATIC_LTLIBS@
|
||||
MCA_coll_STATIC_SUBDIRS = @MCA_coll_STATIC_SUBDIRS@
|
||||
MCA_coll_basic_ALPHA_VERSION = @MCA_coll_basic_ALPHA_VERSION@
|
||||
MCA_coll_basic_BETA_VERSION = @MCA_coll_basic_BETA_VERSION@
|
||||
MCA_coll_basic_FULL_VERSION = @MCA_coll_basic_FULL_VERSION@
|
||||
MCA_coll_basic_MAJOR_VERSION = @MCA_coll_basic_MAJOR_VERSION@
|
||||
MCA_coll_basic_MINOR_VERSION = @MCA_coll_basic_MINOR_VERSION@
|
||||
MCA_coll_basic_RELEASE_VERSION = @MCA_coll_basic_RELEASE_VERSION@
|
||||
MCA_coll_basic_SVN_VERSION = @MCA_coll_basic_SVN_VERSION@
|
||||
MCA_common_ALL_SUBDIRS = @MCA_common_ALL_SUBDIRS@
|
||||
MCA_common_DSO_SUBDIRS = @MCA_common_DSO_SUBDIRS@
|
||||
MCA_common_STATIC_LTLIBS = @MCA_common_STATIC_LTLIBS@
|
||||
MCA_common_STATIC_SUBDIRS = @MCA_common_STATIC_SUBDIRS@
|
||||
MCA_gpr_ALL_SUBDIRS = @MCA_gpr_ALL_SUBDIRS@
|
||||
MCA_gpr_DSO_SUBDIRS = @MCA_gpr_DSO_SUBDIRS@
|
||||
MCA_gpr_STATIC_LTLIBS = @MCA_gpr_STATIC_LTLIBS@
|
||||
MCA_gpr_STATIC_SUBDIRS = @MCA_gpr_STATIC_SUBDIRS@
|
||||
MCA_io_ALL_SUBDIRS = @MCA_io_ALL_SUBDIRS@
|
||||
MCA_io_DSO_SUBDIRS = @MCA_io_DSO_SUBDIRS@
|
||||
MCA_io_STATIC_LTLIBS = @MCA_io_STATIC_LTLIBS@
|
||||
MCA_io_STATIC_SUBDIRS = @MCA_io_STATIC_SUBDIRS@
|
||||
MCA_llm_ALL_SUBDIRS = @MCA_llm_ALL_SUBDIRS@
|
||||
MCA_llm_DSO_SUBDIRS = @MCA_llm_DSO_SUBDIRS@
|
||||
MCA_llm_STATIC_LTLIBS = @MCA_llm_STATIC_LTLIBS@
|
||||
MCA_llm_STATIC_SUBDIRS = @MCA_llm_STATIC_SUBDIRS@
|
||||
MCA_llm_hostfile_ALPHA_VERSION = @MCA_llm_hostfile_ALPHA_VERSION@
|
||||
MCA_llm_hostfile_BETA_VERSION = @MCA_llm_hostfile_BETA_VERSION@
|
||||
MCA_llm_hostfile_FULL_VERSION = @MCA_llm_hostfile_FULL_VERSION@
|
||||
MCA_llm_hostfile_MAJOR_VERSION = @MCA_llm_hostfile_MAJOR_VERSION@
|
||||
MCA_llm_hostfile_MINOR_VERSION = @MCA_llm_hostfile_MINOR_VERSION@
|
||||
MCA_llm_hostfile_RELEASE_VERSION = @MCA_llm_hostfile_RELEASE_VERSION@
|
||||
MCA_llm_hostfile_SVN_VERSION = @MCA_llm_hostfile_SVN_VERSION@
|
||||
MCA_mpool_ALL_SUBDIRS = @MCA_mpool_ALL_SUBDIRS@
|
||||
MCA_mpool_DSO_SUBDIRS = @MCA_mpool_DSO_SUBDIRS@
|
||||
MCA_mpool_STATIC_LTLIBS = @MCA_mpool_STATIC_LTLIBS@
|
||||
MCA_mpool_STATIC_SUBDIRS = @MCA_mpool_STATIC_SUBDIRS@
|
||||
MCA_ns_ALL_SUBDIRS = @MCA_ns_ALL_SUBDIRS@
|
||||
MCA_ns_DSO_SUBDIRS = @MCA_ns_DSO_SUBDIRS@
|
||||
MCA_ns_STATIC_LTLIBS = @MCA_ns_STATIC_LTLIBS@
|
||||
MCA_ns_STATIC_SUBDIRS = @MCA_ns_STATIC_SUBDIRS@
|
||||
MCA_one_ALL_SUBDIRS = @MCA_one_ALL_SUBDIRS@
|
||||
MCA_one_DSO_SUBDIRS = @MCA_one_DSO_SUBDIRS@
|
||||
MCA_one_STATIC_LTLIBS = @MCA_one_STATIC_LTLIBS@
|
||||
MCA_one_STATIC_SUBDIRS = @MCA_one_STATIC_SUBDIRS@
|
||||
MCA_oob_ALL_SUBDIRS = @MCA_oob_ALL_SUBDIRS@
|
||||
MCA_oob_DSO_SUBDIRS = @MCA_oob_DSO_SUBDIRS@
|
||||
MCA_oob_STATIC_LTLIBS = @MCA_oob_STATIC_LTLIBS@
|
||||
MCA_oob_STATIC_SUBDIRS = @MCA_oob_STATIC_SUBDIRS@
|
||||
MCA_pcm_ALL_SUBDIRS = @MCA_pcm_ALL_SUBDIRS@
|
||||
MCA_pcm_DSO_SUBDIRS = @MCA_pcm_DSO_SUBDIRS@
|
||||
MCA_pcm_STATIC_LTLIBS = @MCA_pcm_STATIC_LTLIBS@
|
||||
MCA_pcm_STATIC_SUBDIRS = @MCA_pcm_STATIC_SUBDIRS@
|
||||
MCA_pml_ALL_SUBDIRS = @MCA_pml_ALL_SUBDIRS@
|
||||
MCA_pml_DSO_SUBDIRS = @MCA_pml_DSO_SUBDIRS@
|
||||
MCA_pml_STATIC_LTLIBS = @MCA_pml_STATIC_LTLIBS@
|
||||
MCA_pml_STATIC_SUBDIRS = @MCA_pml_STATIC_SUBDIRS@
|
||||
MCA_ptl_ALL_SUBDIRS = @MCA_ptl_ALL_SUBDIRS@
|
||||
MCA_ptl_DSO_SUBDIRS = @MCA_ptl_DSO_SUBDIRS@
|
||||
MCA_ptl_STATIC_LTLIBS = @MCA_ptl_STATIC_LTLIBS@
|
||||
MCA_ptl_STATIC_SUBDIRS = @MCA_ptl_STATIC_SUBDIRS@
|
||||
MCA_ptl_prof_ALPHA_VERSION = @MCA_ptl_prof_ALPHA_VERSION@
|
||||
MCA_ptl_prof_BETA_VERSION = @MCA_ptl_prof_BETA_VERSION@
|
||||
MCA_ptl_prof_FULL_VERSION = @MCA_ptl_prof_FULL_VERSION@
|
||||
MCA_ptl_prof_MAJOR_VERSION = @MCA_ptl_prof_MAJOR_VERSION@
|
||||
MCA_ptl_prof_MINOR_VERSION = @MCA_ptl_prof_MINOR_VERSION@
|
||||
MCA_ptl_prof_RELEASE_VERSION = @MCA_ptl_prof_RELEASE_VERSION@
|
||||
MCA_ptl_prof_SVN_VERSION = @MCA_ptl_prof_SVN_VERSION@
|
||||
MCA_topo_ALL_SUBDIRS = @MCA_topo_ALL_SUBDIRS@
|
||||
MCA_topo_DSO_SUBDIRS = @MCA_topo_DSO_SUBDIRS@
|
||||
MCA_topo_STATIC_LTLIBS = @MCA_topo_STATIC_LTLIBS@
|
||||
MCA_topo_STATIC_SUBDIRS = @MCA_topo_STATIC_SUBDIRS@
|
||||
MCA_topo_unity_ALPHA_VERSION = @MCA_topo_unity_ALPHA_VERSION@
|
||||
MCA_topo_unity_BETA_VERSION = @MCA_topo_unity_BETA_VERSION@
|
||||
MCA_topo_unity_FULL_VERSION = @MCA_topo_unity_FULL_VERSION@
|
||||
MCA_topo_unity_MAJOR_VERSION = @MCA_topo_unity_MAJOR_VERSION@
|
||||
MCA_topo_unity_MINOR_VERSION = @MCA_topo_unity_MINOR_VERSION@
|
||||
MCA_topo_unity_RELEASE_VERSION = @MCA_topo_unity_RELEASE_VERSION@
|
||||
MCA_topo_unity_SVN_VERSION = @MCA_topo_unity_SVN_VERSION@
|
||||
OBJEXT = @OBJEXT@
|
||||
OMPI_ALPHA_VERSION = @OMPI_ALPHA_VERSION@
|
||||
OMPI_BETA_VERSION = @OMPI_BETA_VERSION@
|
||||
OMPI_BUILD_allocator_bucket_DSO_FALSE = @OMPI_BUILD_allocator_bucket_DSO_FALSE@
|
||||
OMPI_BUILD_allocator_bucket_DSO_TRUE = @OMPI_BUILD_allocator_bucket_DSO_TRUE@
|
||||
OMPI_BUILD_coll_basic_DSO_FALSE = @OMPI_BUILD_coll_basic_DSO_FALSE@
|
||||
OMPI_BUILD_coll_basic_DSO_TRUE = @OMPI_BUILD_coll_basic_DSO_TRUE@
|
||||
OMPI_BUILD_common_sm_DSO_FALSE = @OMPI_BUILD_common_sm_DSO_FALSE@
|
||||
OMPI_BUILD_common_sm_DSO_TRUE = @OMPI_BUILD_common_sm_DSO_TRUE@
|
||||
OMPI_BUILD_llm_hostfile_DSO_FALSE = @OMPI_BUILD_llm_hostfile_DSO_FALSE@
|
||||
OMPI_BUILD_llm_hostfile_DSO_TRUE = @OMPI_BUILD_llm_hostfile_DSO_TRUE@
|
||||
OMPI_BUILD_ns_proxy_DSO_FALSE = @OMPI_BUILD_ns_proxy_DSO_FALSE@
|
||||
OMPI_BUILD_ns_proxy_DSO_TRUE = @OMPI_BUILD_ns_proxy_DSO_TRUE@
|
||||
OMPI_BUILD_ns_replica_DSO_FALSE = @OMPI_BUILD_ns_replica_DSO_FALSE@
|
||||
OMPI_BUILD_ns_replica_DSO_TRUE = @OMPI_BUILD_ns_replica_DSO_TRUE@
|
||||
OMPI_BUILD_oob_cofs_DSO_FALSE = @OMPI_BUILD_oob_cofs_DSO_FALSE@
|
||||
OMPI_BUILD_oob_cofs_DSO_TRUE = @OMPI_BUILD_oob_cofs_DSO_TRUE@
|
||||
OMPI_BUILD_oob_tcp_DSO_FALSE = @OMPI_BUILD_oob_tcp_DSO_FALSE@
|
||||
OMPI_BUILD_oob_tcp_DSO_TRUE = @OMPI_BUILD_oob_tcp_DSO_TRUE@
|
||||
OMPI_BUILD_pcm_cofs_DSO_FALSE = @OMPI_BUILD_pcm_cofs_DSO_FALSE@
|
||||
OMPI_BUILD_pcm_cofs_DSO_TRUE = @OMPI_BUILD_pcm_cofs_DSO_TRUE@
|
||||
OMPI_BUILD_pcm_rsh_DSO_FALSE = @OMPI_BUILD_pcm_rsh_DSO_FALSE@
|
||||
OMPI_BUILD_pcm_rsh_DSO_TRUE = @OMPI_BUILD_pcm_rsh_DSO_TRUE@
|
||||
OMPI_BUILD_pml_teg_DSO_FALSE = @OMPI_BUILD_pml_teg_DSO_FALSE@
|
||||
OMPI_BUILD_pml_teg_DSO_TRUE = @OMPI_BUILD_pml_teg_DSO_TRUE@
|
||||
OMPI_BUILD_ptl_prof_DSO_FALSE = @OMPI_BUILD_ptl_prof_DSO_FALSE@
|
||||
OMPI_BUILD_ptl_prof_DSO_TRUE = @OMPI_BUILD_ptl_prof_DSO_TRUE@
|
||||
OMPI_BUILD_ptl_self_DSO_FALSE = @OMPI_BUILD_ptl_self_DSO_FALSE@
|
||||
OMPI_BUILD_ptl_self_DSO_TRUE = @OMPI_BUILD_ptl_self_DSO_TRUE@
|
||||
OMPI_BUILD_ptl_tcp_DSO_FALSE = @OMPI_BUILD_ptl_tcp_DSO_FALSE@
|
||||
OMPI_BUILD_ptl_tcp_DSO_TRUE = @OMPI_BUILD_ptl_tcp_DSO_TRUE@
|
||||
OMPI_BUILD_topo_unity_DSO_FALSE = @OMPI_BUILD_topo_unity_DSO_FALSE@
|
||||
OMPI_BUILD_topo_unity_DSO_TRUE = @OMPI_BUILD_topo_unity_DSO_TRUE@
|
||||
OMPI_CONFIGURE_DATE = @OMPI_CONFIGURE_DATE@
|
||||
OMPI_CONFIGURE_HOST = @OMPI_CONFIGURE_HOST@
|
||||
OMPI_CONFIGURE_USER = @OMPI_CONFIGURE_USER@
|
||||
OMPI_LIBEVENT_SOURCES = @OMPI_LIBEVENT_SOURCES@
|
||||
OMPI_MAJOR_VERSION = @OMPI_MAJOR_VERSION@
|
||||
OMPI_MINOR_VERSION = @OMPI_MINOR_VERSION@
|
||||
OMPI_RELEASE_VERSION = @OMPI_RELEASE_VERSION@
|
||||
OMPI_SVN_VERSION = @OMPI_SVN_VERSION@
|
||||
OMPI_TOP_BUILDDIR = @OMPI_TOP_BUILDDIR@
|
||||
OMPI_TOP_SRCDIR = @OMPI_TOP_SRCDIR@
|
||||
OMPI_VERSION = @OMPI_VERSION@
|
||||
OMPI_WANT_F77_BINDINGS_FALSE = @OMPI_WANT_F77_BINDINGS_FALSE@
|
||||
OMPI_WANT_F77_BINDINGS_TRUE = @OMPI_WANT_F77_BINDINGS_TRUE@
|
||||
OMPI_WANT_F90_BINDINGS_FALSE = @OMPI_WANT_F90_BINDINGS_FALSE@
|
||||
OMPI_WANT_F90_BINDINGS_TRUE = @OMPI_WANT_F90_BINDINGS_TRUE@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
WANT_DEPRECATED_EXECUTABLE_NAMES_FALSE = @WANT_DEPRECATED_EXECUTABLE_NAMES_FALSE@
|
||||
WANT_DEPRECATED_EXECUTABLE_NAMES_TRUE = @WANT_DEPRECATED_EXECUTABLE_NAMES_TRUE@
|
||||
WANT_INSTALL_HEADERS_FALSE = @WANT_INSTALL_HEADERS_FALSE@
|
||||
WANT_INSTALL_HEADERS_TRUE = @WANT_INSTALL_HEADERS_TRUE@
|
||||
WANT_LIBLTDL_FALSE = @WANT_LIBLTDL_FALSE@
|
||||
WANT_LIBLTDL_TRUE = @WANT_LIBLTDL_TRUE@
|
||||
WANT_MPI_BINDINGS_LAYER_FALSE = @WANT_MPI_BINDINGS_LAYER_FALSE@
|
||||
WANT_MPI_BINDINGS_LAYER_TRUE = @WANT_MPI_BINDINGS_LAYER_TRUE@
|
||||
WANT_MPI_CXX_BINDINGS_FALSE = @WANT_MPI_CXX_BINDINGS_FALSE@
|
||||
WANT_MPI_CXX_BINDINGS_TRUE = @WANT_MPI_CXX_BINDINGS_TRUE@
|
||||
WANT_MPI_F77_BINDINGS_LAYER_FALSE = @WANT_MPI_F77_BINDINGS_LAYER_FALSE@
|
||||
WANT_MPI_F77_BINDINGS_LAYER_TRUE = @WANT_MPI_F77_BINDINGS_LAYER_TRUE@
|
||||
WANT_PMPI_BINDINGS_LAYER_FALSE = @WANT_PMPI_BINDINGS_LAYER_FALSE@
|
||||
WANT_PMPI_BINDINGS_LAYER_TRUE = @WANT_PMPI_BINDINGS_LAYER_TRUE@
|
||||
WANT_PMPI_F77_BINDINGS_LAYER_FALSE = @WANT_PMPI_F77_BINDINGS_LAYER_FALSE@
|
||||
WANT_PMPI_F77_BINDINGS_LAYER_TRUE = @WANT_PMPI_F77_BINDINGS_LAYER_TRUE@
|
||||
WRAPPER_EXTRA_CFLAGS = @WRAPPER_EXTRA_CFLAGS@
|
||||
WRAPPER_EXTRA_CXXFLAGS = @WRAPPER_EXTRA_CXXFLAGS@
|
||||
WRAPPER_EXTRA_FCFLAGS = @WRAPPER_EXTRA_FCFLAGS@
|
||||
WRAPPER_EXTRA_FFLAGS = @WRAPPER_EXTRA_FFLAGS@
|
||||
WRAPPER_EXTRA_LDFLAGS = @WRAPPER_EXTRA_LDFLAGS@
|
||||
WRAPPER_EXTRA_LIBS = @WRAPPER_EXTRA_LIBS@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_F77 = @ac_ct_F77@
|
||||
ac_ct_FC = @ac_ct_FC@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
ac_prefix_program = @ac_prefix_program@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_ompi_builddir = @top_ompi_builddir@
|
||||
top_ompi_srcdir = @top_ompi_srcdir@
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_ompi_builddir)/src/include \
|
||||
-I$(top_ompi_builddir)/src/ompi/event \
|
||||
-I$(top_ompi_srcdir)/src \
|
||||
-I$(top_ompi_srcdir)/src/include
|
||||
|
||||
noinst_LTLIBRARIES = libmca_ptl_prof.la
|
||||
libmca_ptl_prof_la_SOURCES = \
|
||||
ptl_prof.c \
|
||||
ptl_prof.h \
|
||||
ptl_prof_module.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/mca/ptl/prof/src/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign src/mca/ptl/prof/src/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
clean-noinstLTLIBRARIES:
|
||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libmca_ptl_prof.la: $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_DEPENDENCIES)
|
||||
$(LINK) $(libmca_ptl_prof_la_LDFLAGS) $(libmca_ptl_prof_la_OBJECTS) $(libmca_ptl_prof_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptl_prof.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptl_prof_module.Plo@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool
|
||||
uninstall-info-am:
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-noinstLTLIBRARIES ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-exec \
|
||||
install-exec-am install-info install-info-am install-man \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags uninstall uninstall-am \
|
||||
uninstall-info-am
|
||||
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,147 +0,0 @@
|
||||
#include "ptl_prof.h"
|
||||
|
||||
static int ptl_prof_add_procs_fn( struct mca_ptl_base_module_t* ptl,
|
||||
size_t nprocs,
|
||||
struct ompi_proc_t** procs,
|
||||
struct mca_ptl_base_peer_t** peer,
|
||||
ompi_bitmap_t* reachable )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ptl_prof_del_procs_fn( struct mca_ptl_base_module_t* ptl,
|
||||
size_t nprocs,
|
||||
struct ompi_proc_t** procs,
|
||||
struct mca_ptl_base_peer_t** peer )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ptl_prof_finalize_fn( struct mca_ptl_base_module_t* ptl )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ptl_prof_send_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_ptl_base_peer_t* ptl_base_peer,
|
||||
struct mca_pml_base_send_request_t* request,
|
||||
size_t offset,
|
||||
size_t size,
|
||||
int flags )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ptl_prof_put_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_ptl_base_peer_t* ptl_base_peer,
|
||||
struct mca_pml_base_send_request_t* request,
|
||||
size_t offset,
|
||||
size_t size,
|
||||
int flags )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ptl_prof_get_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_ptl_base_peer_t* ptl_base_peer,
|
||||
struct mca_pml_base_recv_request_t* request,
|
||||
size_t offset,
|
||||
size_t size,
|
||||
int flags )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void ptl_prof_matched_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_ptl_base_recv_frag_t* request )
|
||||
{
|
||||
}
|
||||
|
||||
static int ptl_prof_request_init_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_pml_base_send_request_t* request )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void ptl_prof_request_fini_fn( struct mca_ptl_base_module_t* ptl, struct mca_pml_base_send_request_t* request )
|
||||
{
|
||||
}
|
||||
|
||||
static bool ptl_prof_match_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_ptl_base_recv_frag_t* recv_frag,
|
||||
struct mca_ptl_base_match_header_t* header )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static void ptl_prof_send_progress_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_pml_base_send_request_t* send_request,
|
||||
size_t bytes_sent )
|
||||
{
|
||||
}
|
||||
|
||||
static void ptl_prof_recv_progress_fn( struct mca_ptl_base_module_t* ptl,
|
||||
struct mca_pml_base_recv_request_t* recv_request,
|
||||
size_t bytes_received,
|
||||
size_t bytes_delivered )
|
||||
{
|
||||
}
|
||||
|
||||
/* The default profiling PTL. We will canibalize all others PTL
|
||||
* except this one. It's just a simple way to have the control function
|
||||
* called.
|
||||
*/
|
||||
mca_ptl_prof_t mca_ptl_prof = {
|
||||
{ NULL,
|
||||
0, /* maximum size of request cache for this PTL */
|
||||
0, /* number of bytes required by PTL for request cache */
|
||||
0, /* ptl_frag_first_size */
|
||||
0, /* ptl_frag_min_size */
|
||||
0, /* ptl_frag_max_size */
|
||||
0, /* ptl_exclusivity */
|
||||
0, /* ptl_latency */
|
||||
0, /* ptl_bandwidth */
|
||||
MCA_PTL_PUT | MCA_PTL_GET, /* ptl flags */
|
||||
ptl_prof_add_procs_fn,
|
||||
ptl_prof_del_procs_fn,
|
||||
ptl_prof_finalize_fn,
|
||||
ptl_prof_send_fn,
|
||||
ptl_prof_put_fn,
|
||||
ptl_prof_get_fn,
|
||||
ptl_prof_matched_fn,
|
||||
ptl_prof_request_init_fn,
|
||||
ptl_prof_request_fini_fn,
|
||||
ptl_prof_match_fn,
|
||||
ptl_prof_send_progress_fn,
|
||||
ptl_prof_recv_progress_fn,
|
||||
NULL, /* the stack :) */
|
||||
NULL,
|
||||
}
|
||||
};
|
||||
|
||||
static void ptl_prof_construct(mca_ptl_prof_t* ptl)
|
||||
{
|
||||
ptl->super.ptl_add_procs = ptl_prof_add_procs_fn;
|
||||
ptl->super.ptl_del_procs = ptl_prof_del_procs_fn;
|
||||
ptl->super.ptl_finalize = ptl_prof_finalize_fn;
|
||||
ptl->super.ptl_send = ptl_prof_send_fn;
|
||||
ptl->super.ptl_put = ptl_prof_put_fn;
|
||||
ptl->super.ptl_get = ptl_prof_get_fn;
|
||||
ptl->super.ptl_matched = ptl_prof_matched_fn;
|
||||
ptl->super.ptl_request_init = ptl_prof_request_init_fn;
|
||||
ptl->super.ptl_request_fini = ptl_prof_request_fini_fn;
|
||||
ptl->super.ptl_match = ptl_prof_match_fn;
|
||||
ptl->super.ptl_send_progress = ptl_prof_send_progress_fn;
|
||||
ptl->super.ptl_recv_progress = ptl_prof_recv_progress_fn;
|
||||
ptl->super.ptl_stack = NULL;
|
||||
}
|
||||
|
||||
static void ptl_prof_destruct(mca_ptl_prof_t* ptl)
|
||||
{
|
||||
/* deregistering the profiling ids from the profiling layer */
|
||||
}
|
||||
|
||||
OBJ_CLASS_INSTANCE( mca_ptl_prof_t, ompi_object_t,
|
||||
ptl_prof_construct,
|
||||
ptl_prof_destruct );
|
||||
|
@ -1,41 +0,0 @@
|
||||
/*
|
||||
* *$HEADER$
|
||||
* */
|
||||
/**
|
||||
* * @file
|
||||
* */
|
||||
|
||||
#ifndef PTL_PROF_H_HAS_BEEN_INCLUDED
|
||||
#define PTL_PROF_H_HAS_BEEN_INCLUDED
|
||||
|
||||
#include "event/event.h"
|
||||
#include "mca/pml/pml.h"
|
||||
#include "mca/ptl/ptl.h"
|
||||
#include "mca/pml/base/pml_base_recvreq.h"
|
||||
#include "mca/ptl/base/ptl_base_recvfrag.h"
|
||||
|
||||
/**
|
||||
* PROF PTL module.
|
||||
*/
|
||||
struct mca_ptl_prof_module_1_0_0 {
|
||||
mca_ptl_base_component_t super; /**< base PTL module */
|
||||
struct mca_ptl_t** prof_ptls; /**< array of available PTLs */
|
||||
u_int32_t prof_num_ptls; /**< number of ptls actually used */
|
||||
u_int32_t prof_max_ptls; /**< maximum number of ptls - available kernel ifs */
|
||||
u_int32_t prof_buf_size; /**< the size of the internal buffer used to profile each PTL */
|
||||
};
|
||||
typedef struct mca_ptl_prof_module_1_0_0 mca_ptl_prof_module_1_0_0_t;
|
||||
/**
|
||||
* Profiling module.
|
||||
*/
|
||||
struct mca_ptl_prof {
|
||||
mca_ptl_base_module_t super;
|
||||
u_int32_t prof_create_id;
|
||||
u_int32_t prof_start_send_id;
|
||||
u_int32_t prof_start_recv_id;
|
||||
u_int32_t prof_complete_id;
|
||||
};
|
||||
typedef struct mca_ptl_prof mca_ptl_prof_t;
|
||||
OBJ_CLASS_DECLARATION(mca_ptl_prof_t);
|
||||
|
||||
#endif /* PTL_PROF_H_HAS_BEEN_INCLUDED */
|
@ -1,93 +0,0 @@
|
||||
/* -*- Mode: C; c-basic-offset:4 ; -*- */
|
||||
/*
|
||||
* $HEADER$
|
||||
*/
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include "constants.h"
|
||||
#include "event/event.h"
|
||||
#include "util/if.h"
|
||||
#include "util/argv.h"
|
||||
#include "util/output.h"
|
||||
#include "mca/pml/pml.h"
|
||||
#include "mca/ptl/ptl.h"
|
||||
#include "mca/pml/base/pml_base_sendreq.h"
|
||||
#include "mca/ptl/base/ptl_base_recvfrag.h"
|
||||
#include "mca/base/mca_base_param.h"
|
||||
#include "mca/base/mca_base_module_exchange.h"
|
||||
#include "ptl_prof.h"
|
||||
|
||||
/**
|
||||
* This is the moment to grab all existing modules, and then replace their
|
||||
* functions with my own. In same time the ptl_stack will be initialized
|
||||
* with the pointer to a ptl automatically generate, which will contain
|
||||
* the correct pointers.
|
||||
*/
|
||||
static int ptl_prof_module_control_fn( int param, void* value, size_t size )
|
||||
{
|
||||
/* check in mca_ptl_base_modules_initialized */
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* We have to create at least one PTL, just to allow the PML to call the control
|
||||
* function associated with this PTL.
|
||||
*/
|
||||
extern mca_ptl_prof_t mca_ptl_prof;
|
||||
static struct mca_ptl_t** ptl_prof_module_init_fn( int *num_ptls,
|
||||
bool *allow_multi_user_threads,
|
||||
bool *have_hidden_threads )
|
||||
{
|
||||
*num_ptls = 1;
|
||||
*allow_multi_user_threads = true;
|
||||
*have_hidden_threads = false;
|
||||
return (struct mca_ptl_t**)&mca_ptl_prof;
|
||||
}
|
||||
|
||||
static int mca_ptl_prof_module_open_fn( void )
|
||||
{
|
||||
return OMPI_SUCCESS;
|
||||
}
|
||||
|
||||
static int mca_ptl_prof_module_close_fn( void )
|
||||
{
|
||||
return OMPI_SUCCESS;
|
||||
}
|
||||
|
||||
mca_ptl_prof_module_1_0_0_t mca_ptl_prof_module = {
|
||||
{
|
||||
/* First, the mca_base_module_t struct containing meta information
|
||||
about the module itself */
|
||||
|
||||
{
|
||||
/* Indicate that we are a pml v1.0.0 module (which also implies a
|
||||
specific MCA version) */
|
||||
|
||||
MCA_PTL_BASE_VERSION_1_0_0,
|
||||
|
||||
"prof", /* MCA module name */
|
||||
1, /* MCA module major version */
|
||||
0, /* MCA module minor version */
|
||||
0, /* MCA module release version */
|
||||
mca_ptl_prof_module_open_fn, /* module open */
|
||||
mca_ptl_prof_module_close_fn /* module close */
|
||||
},
|
||||
|
||||
/* Next the MCA v1.0.0 module meta data */
|
||||
|
||||
{
|
||||
/* Whether the module is checkpointable or not */
|
||||
true
|
||||
},
|
||||
|
||||
ptl_prof_module_init_fn,
|
||||
ptl_prof_module_control_fn,
|
||||
NULL,
|
||||
}
|
||||
};
|
Загрузка…
Ссылка в новой задаче
Block a user