bugfix in the Makefile for the Java binding for creating .jar files

This commit is contained in:
krasimir
2015-11-16 14:39:52 +00:00
parent 465aa785cf
commit 279fdb74b7

View File

@@ -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 $<