fix: put correct flag for opti.................

This commit is contained in:
gbrochar 2024-02-18 00:46:50 +01:00
parent 4c53350bd5
commit 585f9750df
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ $(NAME):
gcc -Wall -Wextra -Werror -Wunused-function $(SRC) -o $(NAME)
fast:
gcc -Wall -Wextra -Werror -Wunused-function -o3 $(SRC) -o $(NAME)
gcc -Wall -Wextra -Werror -Wunused-function -O3 $(SRC) -o $(NAME)
profile:
gcc -Wall -Wextra -Werror -Wunused-function -pg $(SRC) -o $(NAME)