From 3c904fb657d2bb1ef627ff56ee458ee10b68b138 Mon Sep 17 00:00:00 2001 From: nicejs-is-cool Date: Tue, 2 Jun 2026 08:55:36 -0300 Subject: [PATCH] update makefile to add java to all --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f317e40..9697f10 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ CPP_SRCS = $(wildcard ${BASE_NPATH}/*.cpp) OBJS = $(CPP_SRCS:.cpp=.o) NATIVE_NAME=main -all: $(TARGET) +all: java $(TARGET) $(TARGET): $(OBJS) g++ -shared -o ${BASE_NPATH}/$(TARGET) \