X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fhello-static-lib%2FMakefile.am;h=6633489424a388db1f375e5aefa3e14f8746f66e;hb=9501d22f55b3a23f382f631c99b2325d1419b5da;hp=31b26b72ecc83991c9ad83a63e6e103ca79a4c64;hpb=246e16259bbd3eefc591a829f8396194f71e0b2e;p=lttng-ust.git diff --git a/tests/hello-static-lib/Makefile.am b/tests/hello-static-lib/Makefile.am index 31b26b72..66334894 100644 --- a/tests/hello-static-lib/Makefile.am +++ b/tests/hello-static-lib/Makefile.am @@ -3,11 +3,19 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -Wsystem-headers noinst_LTLIBRARIES = liblttng-ust-provider-ust-test-hello.la liblttng_ust_provider_ust_test_hello_la_SOURCES = \ tp.c ust_tests_hello.h +liblttng_ust_provider_ust_test_hello_la_LIBADD = \ + $(top_builddir)/liblttng-ust/liblttng-ust.la noinst_PROGRAMS = hello hello_SOURCES = hello.c -hello_LDADD = $(top_builddir)/liblttng-ust/liblttng-ust.la \ - liblttng-ust-provider-ust-test-hello.la +hello_LDADD = liblttng-ust-provider-ust-test-hello.la + +if LTTNG_UST_BUILD_WITH_LIBDL +hello_LDADD += -ldl +endif +if LTTNG_UST_BUILD_WITH_LIBC_DL +hello_LDADD += -lc +endif noinst_SCRIPTS = run EXTRA_DIST = run