another makefile change because i forgot to use CXX

This commit is contained in:
2026-06-02 08:56:57 -03:00
parent 3c904fb657
commit 7038bebd3d

View File

@@ -17,7 +17,7 @@ NATIVE_NAME=main
all: java $(TARGET)
$(TARGET): $(OBJS)
g++ -shared -o ${BASE_NPATH}/$(TARGET) \
$(CXX) -shared -o ${BASE_NPATH}/$(TARGET) \
$(OBJS) ${BASE_NPATH}/libneonucleus.a $(TLA_PATH)/libtla.a -lc
%.o: %.cpp
$(CXX) -c -fPIC -I${JAVA_HOME}/include -I${JAVA_HOME}/include/linux $(CFLAGS) \