+ deletion (deprecated)

This commit is contained in:
kelson42 2013-04-04 15:11:06 +02:00
parent be2f4dbb79
commit 4d0f6c5d93

View File

@ -1,13 +0,0 @@
#!/bin/bash
# Compile the JNI class, this will create JNIKiwix.class
javac JNIKiwix.java
# Create the JNI header file, this will create JNIKiwix.h
javah -jni JNIKiwix
# Compile the native lib libkiwix.so
g++ -shared -fpic -o libkiwix.so -I/usr/lib/jvm/java-7-openjdk-i386/include/ kiwix.c
# Run the code
java -Djava.library.path=./ JNIKiwix