From a301690be6581e23a39813444b2904addcb26ab7 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 30 Jul 2008 23:10:39 +0200 Subject: make building of examples optional --- Makefile.am | 6 +++++- configure.ac | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 742b744..2025eb8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,11 @@ # . EXTRA_DIST=bootstrap.sh LICENSE -SUBDIRS=libdaemon doc examples +SUBDIRS=libdaemon doc + +if EXAMPLES +SUBDIRS += examples +endif pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libdaemon.pc diff --git a/configure.ac b/configure.ac index 3f2ab05..57026a2 100644 --- a/configure.ac +++ b/configure.ac @@ -111,5 +111,10 @@ fi AM_CONDITIONAL([USE_LYNX], [test "x$lynx" = xyes]) +AC_ARG_ENABLE(examples, + AS_HELP_STRING([--disable-examples], [Don't build examples during make]),, + enable_examples="yes") +AM_CONDITIONAL(EXAMPLES, [test "$enable_examples" = "yes"]) + AC_CONFIG_FILES([libdaemon/Makefile Makefile doc/Makefile doc/README.html doc/doxygen.conf examples/Makefile libdaemon.pc]) AC_OUTPUT -- cgit