Don't list Java files explicitly, since these files are auto-generated.
[libguestfs.git] / java / Makefile.am
1 # libguestfs Java bindings
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 # Old RHEL 5 autoconf doesn't have builddir.
19 builddir ?= $(top_builddir)/java
20
21 java_prefix = com/redhat/et/libguestfs
22
23 java_sources = \
24         $(java_prefix)/*.java
25
26 java_tests = \
27         Bindtests.java \
28         t/GuestFS005Load.java \
29         t/GuestFS010Launch.java \
30         t/GuestFS050LVCreate.java
31
32 EXTRA_DIST = \
33         $(java_sources) \
34         $(java_tests) \
35         run-bindtests \
36         run-java-tests
37
38 CLEANFILES = doc-stamp
39
40 if HAVE_JAVA
41
42 # Java source.
43
44 libguestfs_jardir = $(JAR_INSTALL_DIR)
45 libguestfs_jar_DATA = libguestfs-${VERSION}.jar
46 libguestfs_jar_class_files = $(java_sources:.java=.class)
47 $(libguestfs_jar_class_files): %.class: %.java
48         $(JAVAC) $(JAVAC_FLAGS) -d $(builddir) -classpath @srcdir@:$(builddir) -sourcepath @srcdir@:$(builddir) $<
49
50 libguestfs-${VERSION}.jar: $(libguestfs_jar_class_files)
51         $(JAR) cf $@ $^
52
53 # JNI source.
54
55 lib_LTLIBRARIES = libguestfs_jni.la
56 libguestfs_jni_la_SOURCES = \
57         com_redhat_et_libguestfs_GuestFS.h \
58         com_redhat_et_libguestfs_GuestFS.c
59
60 libguestfs_jni_la_LIBADD = $(top_builddir)/src/libguestfs.la
61 libguestfs_jni_la_LDFLAGS = -version-info $(JNI_VERSION_INFO)
62 libguestfs_jni_la_CFLAGS = -Wall -I$(top_srcdir)/src -I$(top_builddir)/src $(JNI_CFLAGS)
63
64 BUILT_SOURCES = com_redhat_et_libguestfs_GuestFS.h
65
66 com_redhat_et_libguestfs_GuestFS.h: $(java_prefix)/GuestFS.class
67         $(JAVAH) -classpath @srcdir@:$(builddir) com.redhat.et.libguestfs.GuestFS
68
69 # Documentation.
70
71 noinst_SCRIPTS = doc-stamp
72
73 doc-stamp: $(java_sources)
74         $(JAVADOC) $(JAVADOC_FLAGS) -d api \
75           -sourcepath $(srcdir) \
76           -windowtitle "libguestfs java $(VERSION) API reference" \
77           -doctitle "libguestfs java $(VERSION) API reference" \
78           com.redhat.et.libguestfs
79         touch $@
80
81 install-data-hook:
82         mkdir -p $(DESTDIR)$(datadir)/javadoc/$(PACKAGE_NAME)-java-$(PACKAGE_VERSION)
83         cp -a api/* $(DESTDIR)$(datadir)/javadoc/$(PACKAGE_NAME)-java-$(PACKAGE_VERSION)
84
85 # Tests (not comprehensive).
86
87 TESTS = run-bindtests run-java-tests
88 TESTS_ENVIRONMENT = \
89         JAVA=$(JAVA) \
90         CLASSPATH=.:t:libguestfs-$(VERSION).jar \
91         LIBGUESTFS_PATH=$(top_builddir)/appliance
92
93 noinst_DATA = Bindtests.class $(java_tests:.java=.class)
94
95 t/%.class: t/%.java
96         $(JAVAC) $(JAVAC_FLAGS) -classpath libguestfs-$(VERSION).jar $<
97
98 Bindtests.class: Bindtests.java
99         $(JAVAC) $(JAVAC_FLAGS) -classpath libguestfs-$(VERSION).jar $<
100
101 endif
102
103 # Tell version 3.79 and up of GNU make to not build goals in this
104 # directory in parallel.
105 .NOTPARALLEL: