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 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