Move current compile tests to 'api1'
[lttng-ust.git] / tests / compile / api1 / hello.cxx / Makefile.am
1 # SPDX-License-Identifier: LGPL-2.1-only
2
3 AM_CPPFLAGS += -I$(srcdir)
4
5 noinst_PROGRAMS = hello hello-compatapi1
6
7 hello_SOURCES = hello.cpp tp-cpp.cpp ust_tests_hello.h
8 hello_LDADD = \
9 $(top_builddir)/src/lib/lttng-ust/liblttng-ust.la \
10 $(DL_LIBS)
11
12 # Compile without API0 compat macros
13 hello_compatapi1_SOURCES = hello.cpp tp-cpp.cpp ust_tests_hello.h
14 hello_compatapi1_CFLAGS = -DLTTNG_UST_COMPAT_API_VERSION=1 $(AM_CFLAGS)
15 hello_compatapi1_LDADD = \
16 $(top_builddir)/src/lib/lttng-ust/liblttng-ust.la \
17 $(DL_LIBS)
18
19 EXTRA_DIST = README
This page took 0.028926 seconds and 4 git commands to generate.