aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-18 10:16:09 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-18 10:16:09 +0330
commit0b85ea4a7b64ed583aaf0e323252c5f792c042a2 (patch)
tree1104f435ec7c93ac3489aa91536789da085c7bae /Makefile
parentcfc5418931fa15e6a31583820266bf35d489da88 (diff)
replaced putc with @putc()
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 62214dc..9819bce 100644
--- a/Makefile
+++ b/Makefile
@@ -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)
@@ -74,7 +74,7 @@ test/big.felan: Makefile
for((n = 0;n < 1000000;n++)); do echo " print('1');" >> $@; done
echo "};" >> $@
echo "print :: (value:u8) -> void {" >> $@
- echo " putc value;" >> $@
+ echo " @putc(value);" >> $@
echo "};" >> $@
# $@ = left hand of :