X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=doc%2Fexamples%2FMakefile.am;h=583909b65a8a97c211c7c44623bac968285c2663;hb=16c96fc0224145192f803fecbdb20ec05fdaf5e2;hp=e9dd170d07b59df84e128f67e5a9f9f9a62221e5;hpb=76aca78d0ff0670d6979a82ca688956c1d9d90a5;p=lttng-ust.git diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index e9dd170d..583909b6 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -1,5 +1,3 @@ -SUBDIRS = easy-ust demo hello-static-lib - doc_examplesdir = ${docdir}/examples doc_examples_easy_ustdir = ${docdir}/examples/easy-ust doc_examples_gen_tpdir = ${docdir}/examples/gen-tp @@ -32,5 +30,19 @@ dist_doc_examples_hello_static_lib_DATA = hello-static-lib/Makefile \ hello-static-lib/ust_tests_hello.h \ hello-static-lib/tp.c -BUILD_EXAMPLES_FROM_TREE = 1 -export +if NO_SHARED +# Don't build examples if shared libraries support was explicitly +# disabled. +else +SUBDIRS_PROXY = easy-ust demo hello-static-lib + +all-local: + for subdir in $(SUBDIRS_PROXY); do \ + cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../include/" AM_LDFLAGS='-L../../../liblttng-ust/.libs/ -Wl,-rpath="$(PWD)/../../liblttng-ust/.libs/"' $(AM_MAKEFLAGS) all; cd ..; \ + done + +clean-local: + for subdir in $(SUBDIRS_PROXY); do \ + cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; cd ..; \ + done +endif