summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2001-05-25 23:28:20 +0000
committerDavid Schleef <ds@schleef.org>2001-05-25 23:28:20 +0000
commit4c6a1df6f5fde0dbc8a6efa6e7938c094c2b7da0 (patch)
tree6c5fbccdff4eb0dff162453a84f5deffe0cf4f69 /test
parentfa4500f154c288f72622f87333b8bb01730d6153 (diff)
Added -Wall
Diffstat (limited to 'test')
-rw-r--r--test/Rules.mak3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Rules.mak b/test/Rules.mak
index 1700195aa..00abb880f 100644
--- a/test/Rules.mak
+++ b/test/Rules.mak
@@ -22,6 +22,9 @@ STRIPTOOL=strip
# Check if 'ls -sh' works or not
LSFLAGS = -l
+# turn all the warnings on
+WARNINGS=-Wall
+
# use '-Os' optimization if available, else use -O2
OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
then echo "-Os"; else echo "-O2" ; fi)