elf: support dynamic symbol table lookup
[lttng-tools.git] / tests / utils / testapp / userspace-probe-elf-binary / Makefile.am
CommitLineData
a9c2df2b
FD
1# no optimization
2AM_CFLAGS = -O0
ef3dfe5d
FD
3noinst_LTLIBRARIES = libfoo.la
4
5libfoo_la_SOURCES = foo.c foo.h
6libfoo_la_LDFLAGS = -shared -module -avoid-version -rpath $(abs_builddir)/.libs/
7
a9c2df2b
FD
8noinst_PROGRAMS = userspace-probe-elf-binary
9userspace_probe_elf_binary_SOURCES = userspace-probe-elf-binary.c
ef3dfe5d
FD
10userspace_probe_elf_binary_LDADD = libfoo.la
11
12libfoo.strip: libfoo.la
13 $(OBJCOPY) --strip-all .libs/libfoo.so
14
15all-local: libfoo.strip
16 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
17 for script in $(EXTRA_DIST); do \
18 cp -f $(srcdir)/$$script $(builddir); \
19 done; \
20 fi
This page took 0.024695 seconds and 4 git commands to generate.