We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7cacb7 commit 06afca2Copy full SHA for 06afca2
java/Makefile
@@ -5,9 +5,10 @@ FILES = libsvm/svm.class libsvm/svm_model.class libsvm/svm_node.class \
5
svm_train.class svm_predict.class svm_toy.class svm_scale.class
6
7
#JAVAC = jikes
8
-JAVAC_FLAGS = -target 1.5 -source 1.5
+JAVAC_FLAGS = -target 1.7 -source 1.7
9
JAVAC = javac
10
# JAVAC_FLAGS =
11
+export CLASSPATH := .:$(CLASSPATH)
12
13
all: $(FILES)
14
jar cvf libsvm.jar *.class libsvm/*.class
java/libsvm/svm.m4
@@ -1,4 +1,4 @@
1
-define(`swap',`do {$1 _=$2; $2=$3; $3=_;} while(false)')
+define(`swap',`do {$1 tmp=$2; $2=$3; $3=tmp;} while(false)')
2
define(`Qfloat',`float')
3
define(`SIZE_OF_QFLOAT',4)
4
define(`TAU',1e-12)
0 commit comments