summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-26 08:57:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-26 08:57:13 +0000
commit31c271ff63fd0f27ce9950b7feff3d1825eaf8a3 (patch)
treecbdbb2f35a2f05ce6ed1cfe166b7eeea90dae16c
parent20c239dd11334bd810156352fef51a66de6317d6 (diff)
downloadrockbox-31c271ff63fd0f27ce9950b7feff3d1825eaf8a3.zip
rockbox-31c271ff63fd0f27ce9950b7feff3d1825eaf8a3.tar.gz
rockbox-31c271ff63fd0f27ce9950b7feff3d1825eaf8a3.tar.bz2
rockbox-31c271ff63fd0f27ce9950b7feff3d1825eaf8a3.tar.xz
stricter compiler checks to warn more
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@249 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/test/id3/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/test/id3/Makefile b/firmware/test/id3/Makefile
index a9e5457..a286fc1 100644
--- a/firmware/test/id3/Makefile
+++ b/firmware/test/id3/Makefile
@@ -1,7 +1,7 @@
TARGET = id3test
OBJS = id3.o
-CFLAGS = -g -DDEBUG_STANDALONE -c -o
+CFLAGS = -g -W -Wall -DDEBUG_STANDALONE -c -o
$(TARGET) : $(OBJS)
$(CC) -o $(TARGET) $(OBJS)