Build the liblttng-ust-java library using the new M4 macros
[lttng-ust.git] / tests / java-jul / Makefile.am
CommitLineData
cfff0cd5
MD
1EXTRA_DIST = test_jul JULTest.java
2
43e5396b
DG
3if BUILD_JNI_INTERFACE
4
5if HAVE_JAVA_JDK
6JCC=$(JAVA_JDK)/bin/javac
7else
8JCC=javac
9endif
10
11AM_CPPFLAGS = -I$(top_srcdir)/include
12
16b36e55 13JUL_jar_file = "$(builddir)/../../liblttng-ust-jul/liblttng-ust-jul.jar"
43e5396b
DG
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.023469 seconds and 4 git commands to generate.