Add Log4j 2.x agent tests for the 'log4j' domain
[lttng-tools.git] / tests / regression / ust / java-log4j2 / Makefile.am
CommitLineData
0fd2fd15
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
3JAVAROOT = .
4
5noinst_SCRIPTS = \
6 test_agent_log4j2_domain_log4j
7
8EXTRA_DIST = \
9 JTestLTTngLog4j2.java \
10 domain-log4j.xml \
11 test_agent_log4j2_domain_log4j
12
13if TEST_JAVA_LOG4J2_AGENT
14dist_noinst_JAVA = JTestLTTngLog4j2.java
15endif # TEST_JAVA_LOG4J2_AGENT
16
17all-local: static_file
18
19static_file:
20 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
21 for script in $(EXTRA_DIST); do \
22 cp -f $(srcdir)/$$script $(builddir); \
23 done; \
24 fi
25
26clean-local:
27 rm -f *.class
28 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
29 for script in $(EXTRA_DIST); do \
30 rm -f $(builddir)/$$script; \
31 done; \
32 fi
This page took 0.023678 seconds and 4 git commands to generate.