Update readme
[lttng-ust.git] / libustjava / Makefile.am
... / ...
CommitLineData
1if BUILD_JNI_INTERFACE
2
3AM_CPPFLAGS = -I$(top_srcdir)/include
4
5lib_LTLIBRARIES = libustjava.la
6libustjava_la_SOURCES = UST.c UST.h ust_java.h
7dist_noinst_DATA = UST.java
8libustjava_la_LIBADD = -lc -L$(top_builddir)/libust/.libs -lust
9
10all: UST.class UST.h
11
12clean-local:
13 rm -rf UST.h UST.class
14
15UST.class: UST.java
16 javac -d "$(builddir)" "$(srcdir)/UST.java"
17
18UST.h: UST.class
19 javah -jni UST
20
21endif
This page took 0.02224 seconds and 4 git commands to generate.