summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-07-10 12:07:56 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-07-10 12:07:56 +0200
commitd7d939e1c813c3ec038fcc2a15d890db63d616ee (patch)
treefda9f007862a5b281221cb53d2423386330623d1 /Makefile
parent796cbaf3fdd8fbea96639292f67e0b606cff5e51 (diff)
Fix warnings.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 59e883e..3cea400 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ $(DEPFILES):
include $(wildcard $(DEPFILES))
-CXXFLAGS = -g -O3 -std=c++17 -I.
+CXXFLAGS = -Wall -g -O3 -std=c++17 -I.
%.o: %.cc
g++ -MMD $(CXXFLAGS) -c $< -o $@