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