aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-31 16:50:46 +0900
committernsfisis <nsfisis@gmail.com>2025-08-31 16:50:46 +0900
commite09613812ce955c074238e8c91a0ed6eca3dc86f (patch)
tree37977776e60529abb1ee98098ac1364c02e4269b /Makefile
parent54699e921e23a684c711773b123c1bcfecd91ae0 (diff)
downloadducc-e09613812ce955c074238e8c91a0ed6eca3dc86f.tar.gz
ducc-e09613812ce955c074238e8c91a0ed6eca3dc86f.tar.zst
ducc-e09613812ce955c074238e8c91a0ed6eca3dc86f.zip
feat: enable -Wall flag on build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9505295..3e3a420 100644
--- a/Makefile
+++ b/Makefile
@@ -25,9 +25,9 @@ $(BUILD_DIR):
@mkdir -p $(BUILD_DIR)
$(BUILD_ROOT_DIR)/$(TARGET): $(OBJECTS)
- $(CC) -MMD -g -O0 -o $@ $^
+ $(CC) -Wall -MMD -g -O0 -o $@ $^
$(BUILD_DIR)/%.o: src/%.c
- $(CC) -c -MMD -g -O0 -o $@ $<
+ $(CC) -c -Wall -MMD -g -O0 -o $@ $<
-include $(BUILD_DIR)/*.d