aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 773f3d7..e9b1143 100644
--- a/Makefile
+++ b/Makefile
@@ -26,10 +26,10 @@ $(BUILD_DIR):
# TODO: provide release build?
$(BUILD_ROOT_DIR)/$(TARGET): $(OBJECTS)
- $(CC) -Wall -MMD -g -O0 -o $@ $^
+ $(CC) -Wall -MMD -g -O0 --std=c23 -o $@ $^
# TODO: provide release build?
$(BUILD_DIR)/%.o: src/%.c
- $(CC) -c -Wall -MMD -g -O0 -o $@ $<
+ $(CC) -c -Wall -MMD -g -O0 --std=c23 -o $@ $<
-include $(BUILD_DIR)/*.d