Fix: Shorthand option -cp not supported in all version of Java
[lttng-ust.git] / tests / java-jul / Makefile.am
... / ...
CommitLineData
1EXTRA_DIST = test_jul JULTest.java
2
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
13JUL_jar_file = "$(builddir)/../../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) -classpath $(JUL_jar_file) -d "$(builddir)" "$(srcdir)/JULTest.java"
24
25endif
This page took 0.022694 seconds and 4 git commands to generate.