fix release mode not working

This commit is contained in:
Mylloon 2024-04-18 22:33:25 +02:00
parent edad5ef7cf
commit 95478bf0f9
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -21,19 +21,19 @@ PDF_DIR = report
%.o: src/%.c
$(CC) -c $< -o $@ $(CFLAGS)
compilation: $(OBJETS)
$(CC) -o $(EXE)$(EXE_EXT) $(OBJETS) $(LDFLAGS)
main: CFLAGS += -O3
main: compilation
release: CFLAGS += -O3
release: compilation
debug: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
debug: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
debug: LDFLAGS += -fsanitize=undefined
debug: compilation
compilation: $(OBJETS)
$(CC) -o $(EXE)$(EXE_EXT) $(OBJETS) $(LDFLAGS)
all:
main
release
pdf-make:
cd report && \