From 921d2a432ee799d9cf72d1ad5e17dc4c409e549b Mon Sep 17 00:00:00 2001 From: Stephane Delcroix Date: Fri, 13 Feb 2009 22:31:17 +0100 Subject: [PATCH] only recurse in the SUBDIRS we want to build --- bindings/Makefile.am | 8 +++++++- bindings/managed/Makefile.am | 4 +++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/bindings/Makefile.am b/bindings/Makefile.am index 122e7bc..ae850fa 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -1 +1,7 @@ -SUBDIRS= managed +SUBDIRS = + +if ENABLE_MANAGED + SUBDIRS+=managed +endif + +DIST_SUBDIRS= managed diff --git a/bindings/managed/Makefile.am b/bindings/managed/Makefile.am index 99c044e..33ead35 100644 --- a/bindings/managed/Makefile.am +++ b/bindings/managed/Makefile.am @@ -1,6 +1,8 @@ SUBDIRS = \ champlain \ - champlain-gtk \ samples +if ENABLE_GTK + SUBDIRS+=champlain-gtk +endif DIST_SUBDIRS = champlain champlain-gtk samples -- 2.39.5