Add automake support for building the Java library.
If java, javac, and ant are all available, the Java library will be built as part of the standard make target.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665494 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/java/Makefile.am b/lib/java/Makefile.am
new file mode 100644
index 0000000..ddbf2f0
--- /dev/null
+++ b/lib/java/Makefile.am
@@ -0,0 +1,9 @@
+all:
+ $(ANT)
+
+install-exec-hook:
+ $(ANT) install
+
+clean-generic:
+ $(ANT) clean
+