docs: Add supported versions and fix-backport policy
[lttng-tools.git] / tests / utils / tap / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
2a69bf14
KS
3AM_CPPFLAGS += -I$(top_srcdir)/src/ -I$(top_srcdir)/include
4
5noinst_PROGRAMS = clock
6clock_SOURCES = clock.cpp
7clock_CPPFLAGS = $(AM_CPPFLAGS)
ffe50351 8noinst_LTLIBRARIES = libtap.la
329e5f26 9libtap_la_SOURCES = tap.c tap.h
2a69bf14 10libtap_la_LIBADD = ../libtestutils.la
431387b0
JG
11dist_noinst_SCRIPTS = tap.sh
12EXTRA_DIST = tap.sh
c83e7ca0
DG
13
14all-local:
15 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
16 for script in $(EXTRA_DIST); do \
17 cp -f $(srcdir)/$$script $(builddir); \
18 done; \
19 fi
20
21clean-local:
22 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
23 for script in $(EXTRA_DIST); do \
24 rm -f $(builddir)/$$script; \
25 done; \
26 fi
This page took 0.05712 seconds and 4 git commands to generate.