From: Alexis Laferrière Date: Wed, 27 Feb 2019 16:19:52 +0000 (-0500) Subject: Java FFI: Makefile adds the compilation dir to the Java CLASSPATH X-Git-Url: http://nitlanguage.org Java FFI: Makefile adds the compilation dir to the Java CLASSPATH Signed-off-by: Alexis Laferrière --- diff --git a/src/compiler/abstract_compiler.nit b/src/compiler/abstract_compiler.nit index 9753100..e786374 100644 --- a/src/compiler/abstract_compiler.nit +++ b/src/compiler/abstract_compiler.nit @@ -465,6 +465,13 @@ ifneq ($(findstring MINGW64,$(uname_S)),) CFLAGS += -Wno-pointer-to-int-cast -Wno-int-to-pointer-cast endif +# Add the compilation dir to the Java CLASSPATH +ifeq ($(CLASSPATH),) + CLASSPATH := . +else + CLASSPATH := $(CLASSPATH):. +endif + """ makefile.write("all: {outpath}\n")