diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-17 13:41:56 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-17 13:41:56 +0330 |
commit | 62090a4830bd9f01e56b08f50d502d680be9d1de (patch) | |
tree | 6da2b3b9a2cdbb452c73a0aec3dbb56662535366 /Makefile | |
parent | e57d53a699147fcdf418de76908080311cf82710 (diff) |
add comptime if checking
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,9 +20,9 @@ INC_DIRS := $(SRC_DIR) INC_FLAGS := $(addprefix -I,$(INC_DIRS)) # OP_FLAG := -Ofast -OP_FLAG := -O3 +# OP_FLAG := -O3 # OP_FLAG := -Oz -# OP_FLAG := -g +OP_FLAG := -g # CFLAGS := $(INC_FLAGS) -Wall -Wextra -std=gnu23 -DPRINT_STATISTICS -DPRINT_COMPILE_TREE $(OP_FLAG) CFLAGS := $(INC_FLAGS) -Wall -Wextra -std=gnu23 -DPRINT_STATISTICS $(OP_FLAG) |