From: Stephane Delcroix Date: Fri, 13 Feb 2009 21:31:17 +0000 (+0100) Subject: only recurse in the SUBDIRS we want to build X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=921d2a432ee799d9cf72d1ad5e17dc4c409e549b;p=libchamplain only recurse in the SUBDIRS we want to build --- 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