tests: add declarations for functions in gen-syscall-events-callstack.c
[lttng-tools.git] / tests / utils / testapp / userspace-probe-elf-binary / Makefile.am
1 # no optimization
2 AM_CFLAGS = -O0
3 noinst_LTLIBRARIES = libfoo.la
4
5 libfoo_la_SOURCES = foo.c foo.h
6 libfoo_la_LDFLAGS = -shared -module -avoid-version -rpath $(abs_builddir)/.libs/
7
8 noinst_PROGRAMS = userspace-probe-elf-binary
9 userspace_probe_elf_binary_SOURCES = userspace-probe-elf-binary.c
10 userspace_probe_elf_binary_LDADD = libfoo.la
11
12 libfoo.strip: libfoo.la
13 $(OBJCOPY) --strip-all .libs/libfoo.so
14
15 all-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.029196 seconds and 4 git commands to generate.