X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fhello-static-lib%2FMakefile.am;h=699845b124d6fbd5c4bf575eba1490d9c1904fcd;hb=d8a6ca40e8dc4445c78085b7279aa37658557137;hp=0eff080cdd2bb4746299b9fd90a1d9a6bf203ce0;hpb=5cbd73b809f24c435cc4b4523e8add1fda3acfb5;p=lttng-ust.git diff --git a/tests/hello-static-lib/Makefile.am b/tests/hello-static-lib/Makefile.am index 0eff080c..699845b1 100644 --- a/tests/hello-static-lib/Makefile.am +++ b/tests/hello-static-lib/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -Wsystem-headers +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -Wsystem-headers noinst_LTLIBRARIES = liblttng-ust-provider-ust-test-hello.la liblttng_ust_provider_ust_test_hello_la_SOURCES = \ @@ -8,7 +8,11 @@ liblttng_ust_provider_ust_test_hello_la_LIBADD = \ noinst_PROGRAMS = hello hello_SOURCES = hello.c -hello_LDADD = -ldl liblttng-ust-provider-ust-test-hello.la +hello_LDADD = liblttng-ust-provider-ust-test-hello.la -noinst_SCRIPTS = run -EXTRA_DIST = run +if LTTNG_UST_BUILD_WITH_LIBDL +hello_LDADD += -ldl +endif +if LTTNG_UST_BUILD_WITH_LIBC_DL +hello_LDADD += -lc +endif