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 gfxprim.git.
The branch, pywrap has been updated via d1663ce40262b937f7ce441166b1a25ee192675b (commit) from 87e8a9fd81c221077bae24acffeb3cabda7bd0ea (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 ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/d1663ce40262b937f7ce441166b1a25ee1926...
commit d1663ce40262b937f7ce441166b1a25ee192675b Author: Cyril Hrubis metan@ucw.cz Date: Sat Feb 25 16:03:05 2012 +0100
build: Fix dependencies in the main Makefile.
diff --git a/Makefile b/Makefile index 531d666..7c5480f 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,10 @@ SUBDIRS=include libs tests pylib demos build include post.mk
libs: include - -tests: libs -demos: libs +build: libs +tests: build +pylib: build +demos: build
distclean: ifdef VERBOSE diff --git a/build/Makefile b/build/Makefile index 1b39ee3..8a7ec11 100644 --- a/build/Makefile +++ b/build/Makefile @@ -3,6 +3,8 @@ LIB_OBJECTS=$(shell ./get_objs.sh) all: libGP.a libGP.so libGP.so.0 .PHONY: libGP.a libGP.so libGP.so.0
+rebuild: all + clean: ifdef VERBOSE rm -f libGP.a libGP.so libGP.so.0 diff --git a/config.mk b/config.mk index 889944f..f17232b 100644 --- a/config.mk +++ b/config.mk @@ -15,3 +15,10 @@ PYTHON=PYTHONPATH=$$PYTHONPATH:${PYLIBSDIR} ${PYTHON_BIN} -Werror SWIGOPTS=-Wextra -w322,314 -I/usr/include/
SWIG=swig + +# +# If set to yes, rebuilds libGP* after typing make +# in any of the libs/*/ directories that are linked +# to libGP*. +# +REBUILD_LIBGP=yes diff --git a/lib.mk b/lib.mk index 1eceafa..c801e07 100644 --- a/lib.mk +++ b/lib.mk @@ -43,10 +43,12 @@ endif
else # BUILDLIB = no +include $(TOPDIR)/config.mk
+ifeq ($(REBUILD_LIBGP),yes) ALL+=rebuild_lib
rebuild_lib: @$(MAKE) --no-print-directory -C $(TOPDIR)/build/ - +endif endif
-----------------------------------------------------------------------
Summary of changes: Makefile | 7 ++++--- build/Makefile | 2 ++ config.mk | 7 +++++++ lib.mk | 4 +++- 4 files changed, 16 insertions(+), 4 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.