summaryrefslogtreecommitdiff
path: root/platform/java/Makefile
AgeCommit message (Collapse)Author
2018-05-09Fix java build.Tor Andersson
2018-03-22Add phony target to java makefile so it properly rebuilds the native lib.Tor Andersson
Always recurse for the native library, so that it will be rebuilt if the sources change.
2018-01-31java: Don't overwrite LD_LIBRARY_PATH in 'run' target in java makefile.Tor Andersson
2017-01-17java: Add gdb target for debugging JNI crashes.Sebastian Rasmussen
2017-01-17java: JNI code needs generated header files from mupdf library.Sebastian Rasmussen
2017-01-17java: Allow custom compiler flags.Sebastian Rasmussen
2017-01-09java: Use default build type when compiling.Sebastian Rasmussen
The default choice is overridden in the same way as for a normal compile.
2017-01-09java: Automatically determine openjdk path.Sebastian Rasmussen
Also allow for overriding the decision by setting JAVA_HOME.
2016-11-17Build Java viewer with libcrypto support if available.Sebastian Rasmussen
2016-11-15Update JNI code to load 32 or 64 bit DLL as appropriate.Robin Watts
Make the JNI code detect whether it is running on a 32 or 64 bit machine, and change the name of the DLL appropriately. Update Android Makefile to make mupdf_java32 instead of mupdf_java. Update Java Makefile to make mupdf_java32 or mupdf_java64 based on the system it is running on. This choice can be overruled by defining BITS to be "32" or "64" before calling make. Update Windows Solution to make mupdf_java32 or mupdf_java64 as appropriate.
2016-07-15java - move fitz sources into a 'src' subfolder.fred ross-perry
2016-07-05Fix Java makefile to link to system freetype library.Sebastian Rasmussen
2016-03-31Reorganize java and android source.Tor Andersson
platform/java and platform/android are reorganized: platform/java The new JNI Java classes, mupdf_native.{c,h}, Makefile and Makejar. platform/java/example The example desktop viewer classes. platform/android/viewer The original demo viewer. ndk-build is used to build libmupdf_java.so, making reference to mupdf_native.{c,h} in platform/java.
2016-03-21jni: Use system freetype and zlib.Tor Andersson
AWT pulls in the system freetype library, which in turn pulls in system zlib. Avoid symbol collisions and possible header/library conflicts by using the system libraries for desktop java builds.
2016-03-14Build java on 32-bit linux.Tor Andersson
2016-02-29jni: Update build files for moved java sources.Tor Andersson