From 279fdb74b78a7601643a40829c963b9d4b82b1c3 Mon Sep 17 00:00:00 2001 From: krasimir Date: Mon, 16 Nov 2015 14:39:52 +0000 Subject: [PATCH] bugfix in the Makefile for the Java binding for creating .jar files --- src/runtime/java/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/java/Makefile b/src/runtime/java/Makefile index ccbd901e1..ebad974e8 100644 --- a/src/runtime/java/Makefile +++ b/src/runtime/java/Makefile @@ -14,7 +14,7 @@ libjpgf.la: $(patsubst %.c, %.lo, $(C_SOURCES)) libtool --mode=compile gcc -g -O -c -I$(JNI_PATH) -std=c99 -shared $< -o $@ jpgf.jar: $(patsubst %.java, %.class, $(JAVA_SOURCES)) - jar -cf $@ $^ + jar -cf $@ org/grammaticalframework/pgf/*.class org/grammaticalframework/sg/*.class %.class : %.java javac $<