Skip to content

Commit

Permalink
Merge pull request #65 from antoinemine/fix/java-compilation
Browse files Browse the repository at this point in the history
put .class files into jar, not .java (...)
  • Loading branch information
antoinemine authored Jan 22, 2023
2 parents f1ca2f5 + 6d347b4 commit e828208
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions japron/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ all: $(JAVAINST) $(SOINST)
ifneq ($(JAVAC_HAS_H),)

gmp.jar: $(GMPJ)
$(JAVAC) -h gmp $+
$(JAR) cf $@ $+
$(JAVAC) -Xlint:deprecation -h gmp $+
$(JAR) cf $@ $(GMPCLASS)
$(JAR) i $@

else
Expand All @@ -140,8 +140,8 @@ libjgmp.$(EXT_DLL): gmp/jgmp.o $(GMPO)
ifneq ($(JAVAC_HAS_H),)

apron.jar: $(APRONJ)
$(JAVAC) -h apron $+
$(JAR) cf $@ $+
$(JAVAC) -Xlint:deprecation -h apron $+
$(JAR) cf $@ $(APRONCLASS)
$(JAR) i $@

else
Expand Down

0 comments on commit e828208

Please sign in to comment.