Add liblttng-ust-jul for JUL support
[lttng-ust.git] / tests / java-jul / Makefile.am
CommitLineData
43e5396b
DG
1if BUILD_JNI_INTERFACE
2
3if HAVE_JAVA_JDK
4JCC=$(JAVA_JDK)/bin/javac
5else
6JCC=javac
7endif
8
9AM_CPPFLAGS = -I$(top_srcdir)/include
10
11EXTRA_DIST = test_jul
12
13JUL_jar_file = "$(srcdir)/../../liblttng-ust-jul/liblttng-ust-jul.jar"
14
15default: all
16
17all: JULTest.class
18
19clean-local:
20 rm -f *.class
21
22JULTest.class: JULTest.java
23 $(JCC) -cp $(JUL_jar_file) -d "$(builddir)" "$(srcdir)/JULTest.java"
24
25endif
This page took 0.022905 seconds and 4 git commands to generate.