libftdi Archives

Subject: [PATCH] libftdi: add a --without-examples configure flag

From: Mike Frysinger <vapier@xxxxxxxxxx>
To: libftdi@xxxxxxxxxxxxxxxxxxxxxxx
Date: Tue, 22 Jun 2010 18:46:09 -0400
There's a few places where I'm only concerned with building the libftdi
library (for integrating it into a JTAG program), so the examples are just
noise to me.  As such, add an --without-examples configure flag so people
can easily disable the subdir.  The default is unchanged -- examples are
still compiled & installed.

Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx>
---
 configure.in         |    4 ++++
 examples/Makefile.am |    7 ++++++-
 2 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/configure.in b/configure.in
index addf696..f3dad4d 100644
--- a/configure.in
+++ b/configure.in
@@ -47,6 +47,10 @@ AC_ARG_WITH(async-mode,
 ])
 AC_SUBST(ENABLE_ASYNC_MODE)
 
+AC_ARG_WITH(examples,
+  AS_HELP_STRING([--without-examples], [disable example programs]))
+AM_CONDITIONAL(BUILD_EXAMPLES, [test "x$with_examples" != "xno"])
+
 LIBFTDI_MODULES=
 LIBFTDI_MODULES_PKGCONFIG=
 
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 820599a..f45c7e5 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -10,7 +10,8 @@ examples_libftdipp =
 endif
 
 
-bin_PROGRAMS = simple \
+if BUILD_EXAMPLES
+all_examples = simple \
        bitbang       \
        bitbang2      \
        bitbang_ft2232 \
@@ -19,6 +20,10 @@ bin_PROGRAMS = simple \
        serial_read \
        baud_test \
        $(examples_libftdipp)
+else
+all_examples =
+endif
+bin_PROGRAMS = $(all_examples)
 
 # Don't install the example files
 AM_LDFLAGS = -no-install
-- 
1.7.1


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe@xxxxxxxxxxxxxxxxxxxxxxx   

Current Thread