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