diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-24 12:30:50 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-24 12:30:50 +0330 |
commit | 81c83f4233dba3851333cb69ab9727659e253d1b (patch) | |
tree | d54c586a7df0e5a3e5185eeabc25c7f6bd48e1b4 /Makefile | |
parent | ffe049371a64e0b41fdc777106f768b16b2cd9b2 (diff) |
fixing some problems in parsing
adding more stuff to the example
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 -lffi -DPRINT_STATISTICS $(OP_FLAG) |