aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-08 01:38:14 +0900
committernsfisis <nsfisis@gmail.com>2026-01-08 01:38:14 +0900
commitfc1782f7c71d12f30f24bc8633259ea1525a96b0 (patch)
tree3af2bfaf7538d4266c8644a133446d7e2172d815 /Makefile
parent6fb22b73b46a8d6c9d1dfc6302760b4c218f0645 (diff)
downloadducc-fc1782f7c71d12f30f24bc8633259ea1525a96b0.tar.gz
ducc-fc1782f7c71d12f30f24bc8633259ea1525a96b0.tar.zst
ducc-fc1782f7c71d12f30f24bc8633259ea1525a96b0.zip
chore: remove "just build-upto-5-gen" recipe
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index bf073bc..a1204ad 100644
--- a/Makefile
+++ b/Makefile
@@ -26,13 +26,13 @@ $(BUILD_DIR):
@mkdir -p $(BUILD_DIR)
# TODO: provide release build?
-# TODO: use --std=c23 instead of --std=gnu23
+# TODO: use -std=c23 instead of -std=gnu23
$(BUILD_ROOT_DIR)/$(TARGET): $(OBJECTS)
- $(CC) -Wall -MMD -g -O0 --std=gnu23 -o $@ $^
+ $(CC) -Wall -MMD -g -O0 -std=gnu23 -o $@ $^
# TODO: provide release build?
-# TODO: use --std=c23 instead of --std=gnu23
+# TODO: use -std=c23 instead of -std=gnu23
$(BUILD_DIR)/%.o: src/%.c
- $(CC) -c $(CFLAGS) -Wall -MMD -g -O0 --std=gnu23 -o $@ $<
+ $(CC) -c $(CFLAGS) -Wall -MMD -g -O0 -std=gnu23 -o $@ $<
-include $(BUILD_DIR)/*.d