Refactor: test: wrapper for destroy_lttng_session
[lttng-tools.git] / tests / regression / ust / daemon / Makefile.am
CommitLineData
43c28d50
JG
1AM_CPPFLAGS = -I$(srcdir)
2
3noinst_PROGRAMS = daemon
4daemon_SOURCES = daemon.c ust_tests_daemon.h
5daemon_LDADD = -llttng-ust -llttng-ust-fork
6
7if LTTNG_TOOLS_BUILD_WITH_LIBDL
8daemon_LDADD += -ldl
9endif
10if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
11daemon_LDADD += -lc
12endif
13
14noinst_SCRIPTS = test_daemon test_daemon.py
15EXTRA_DIST = test_daemon test_daemon.py
c83e7ca0
DG
16
17all-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(EXTRA_DIST); do \
20 cp -f $(srcdir)/$$script $(builddir); \
21 done; \
22 fi
23
24clean-local:
25 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
26 for script in $(EXTRA_DIST); do \
27 rm -f $(builddir)/$$script; \
28 done; \
29 fi
This page took 0.027081 seconds and 4 git commands to generate.