This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "roboptim-core-plugin-ipopt".

The branch, master has been updated
       via  9aab3c5112f63480f06f5da0a807892c91241c61 (commit)
       via  8e32311004e4ea2581a24287aaf1120cea80a245 (commit)
      from  5969cebdb6746deb3dd17c2afed109649a2f2e19 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9aab3c5112f63480f06f5da0a807892c91241c61
Author: Thomas Moulard <thomas.moul...@gmail.com>
Date:   Mon Mar 1 12:05:36 2010 +0100

    Update documentation.
    
        * .gitmodules: Remove old doc submodule.
        * doc/Doxyfile.extra.in: New.
        * doc/Makefile.am: New.
        * doc: Remove.
    
    Signed-off-by: Thomas Moulard <thomas.moul...@gmail.com>

diff --git a/.gitmodules b/.gitmodules
index 6e0cca4..5a8205a 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -4,6 +4,3 @@
 [submodule "build-aux"]
        path = build-aux
        url = roboptim:build-aux
-[submodule "doc"]
-       path = doc
-       url = roboptim:doc
diff --git a/ChangeLog b/ChangeLog
index f843352..359c122 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2010-03-01  Thomas Moulard  <thomas.moul...@gmail.com>
 
+       Update documentation.
+       * .gitmodules: Remove old doc submodule.
+       * doc/Doxyfile.extra.in: New.
+       * doc/Makefile.am: New.
+       * doc: Remove.
+
+2010-03-01  Thomas Moulard  <thomas.moul...@gmail.com>
+
        Update buildchain.
        * .gitignore: Ignore more files (like ``.version'').
        * Makefile.am: Factorize rules.
diff --git a/doc b/doc
deleted file mode 160000
index 0b2fbea..0000000
--- a/doc
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 0b2fbeaf61da3b4efce4cfdaf8476d6842efd9e4
diff --git a/doc/Doxyfile.extra.in b/doc/Doxyfile.extra.in
new file mode 100644
index 0000000..28e5d11
--- /dev/null
+++ b/doc/Doxyfile.extra.in
@@ -0,0 +1 @@
+TAGFILES = "@ROBOPTIMCORE_DOXYGENDOCDIR@/roboptim-core.doxytag = 
@ROBOPTIMCORE_DOXYGENDOCDIR@"
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644
index 0000000..dc7dc61
--- /dev/null
+++ b/doc/Makefile.am
@@ -0,0 +1,3 @@
+include $(top_srcdir)/build-aux/init.mk
+include $(top_srcdir)/build-aux/doxygen.mk
+include $(top_srcdir)/build-aux/sf-doc.mk

commit 8e32311004e4ea2581a24287aaf1120cea80a245
Author: Thomas Moulard <thomas.moul...@gmail.com>
Date:   Mon Mar 1 12:03:32 2010 +0100

    Update buildchain.
    
        * .gitignore: Ignore more files (like ``.version'').
        * Makefile.am: Factorize rules.
        * build-aux: Synchronize.
    
    Signed-off-by: Thomas Moulard <thomas.moul...@gmail.com>

diff --git a/.gitignore b/.gitignore
index 0ed27d6..2641437 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,9 +7,16 @@ config.h.in
 config.h.in~
 configure
 doc/Makefile.in
+packages/Makefile.in
+packages/debian/Makefile.in
+packages/ebuild/Makefile.in
+packages/rpm/Makefile.in
 src/Makefile.in
 tests/Makefile.in
 tests/testsuite
 +committed/
 ,*
 testsuite.log
+*svn-log*
+.version
+.tarball-version
diff --git a/ChangeLog b/ChangeLog
index dfc762e..f843352 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2010-03-01  Thomas Moulard  <thomas.moul...@gmail.com>
 
+       Update buildchain.
+       * .gitignore: Ignore more files (like ``.version'').
+       * Makefile.am: Factorize rules.
+       * build-aux: Synchronize.
+
+2010-03-01  Thomas Moulard  <thomas.moul...@gmail.com>
+
        Upgrade to RobOptim core 0.5.6.
 
         CAUTION: starting from now, $(libdir)/roboptim-core /MUST/
diff --git a/Makefile.am b/Makefile.am
index c8eac8b..fab1a06 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,5 @@
+include $(top_srcdir)/build-aux/init.mk
+
 # Search for autoconf macros in build-aux.
 ACLOCAL_AMFLAGS = -I build-aux
 
@@ -15,12 +17,16 @@ EXTRA_DIST = bootstrap build-aux/bootstrap
 # Nothing to do in this directory.
 all:
 
-# Libtool rules
-LIBTOOL_DEPS = @LIBTOOL_DEPS@
-libtool: $(LIBTOOL_DEPS)
-       $(SHELL) ./config.status --recheck
+# Include various rules...
+include $(top_srcdir)/build-aux/dist-sign.mk
+include $(top_srcdir)/build-aux/doc-recursive.mk
+include $(top_srcdir)/build-aux/libtool.mk
+include $(top_srcdir)/build-aux/pkg-config.mk
+include $(top_srcdir)/build-aux/git-version-gen.mk
+
+#include $(top_srcdir)/build-aux/rpm.mk
+
 
-# -- Generate documentation
-.PHONY: doc html
-doc html:
-       cd doc && $(MAKE) $(AM_MAKEFLAGS) $@
+SF_PROJECT_ID=roboptim
+include $(top_srcdir)/build-aux/announce-gen.mk
+include $(top_srcdir)/build-aux/sf-release.mk
diff --git a/build-aux b/build-aux
index 53249c7..527142d 160000
--- a/build-aux
+++ b/build-aux
@@ -1 +1 @@
-Subproject commit 53249c7a39864b963946d8088c421e367c8e6b75
+Subproject commit 527142d1b5d6635b7b20227ee67293a55a6fba76

-----------------------------------------------------------------------

Summary of changes:
 .gitignore            |    7 +++++++
 .gitmodules           |    3 ---
 ChangeLog             |   15 +++++++++++++++
 Makefile.am           |   22 ++++++++++++++--------
 build-aux             |    2 +-
 doc                   |    1 -
 doc/Doxyfile.extra.in |    1 +
 doc/Makefile.am       |    3 +++
 8 files changed, 41 insertions(+), 13 deletions(-)
 delete mode 160000 doc
 create mode 100644 doc/Doxyfile.extra.in
 create mode 100644 doc/Makefile.am


hooks/post-receive
-- 
roboptim-core-plugin-ipopt

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
roboptim-commit mailing list
roboptim-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/roboptim-commit

Reply via email to