Add cflags to makefile, fix cflags

This commit is contained in:
Pablu23
2024-07-13 18:19:07 +02:00
parent f12361567c
commit 0a289b99b5
3 changed files with 5 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ $(NAME): ofiles
ar rcs $(NAME) $(OFILES)
ofiles:
g++ -std=c++20 -O -c $(CFILES)
g++ $(CFLAGS) -std=c++20 -O -c $(CFILES)
clean:
rm -f $(OFILES)