get it to BUILD and RUN

This commit is contained in:
2026-06-02 09:21:51 -03:00
parent 322aa2178c
commit 8c1fc42867
4 changed files with 7 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
CC=gcc
CXX=g++
CFLAGS=-Wall -Wextra -fno-sanitize=address
LD_FLAGS=-fno-sanitize=address
CFLAGS=-Wall -Wextra
LD_FLAGS=
TARGET=libcarbon.so
BASE_PATH=./src/main/org/neoflock/NeoNucleus
@@ -32,6 +32,6 @@ run: all
clean:
rm ${JAVA_CLASSES}
rm $(OBJS) $(TARGET)
rm $(OBJS) $(BASE_NPATH)/$(TARGET)
.PHONY: all clean