]> git.cworth.org Git - kub/commitdiff
Temporarily add -Wno-unused-function
authorCarl Worth <cworth@cworth.org>
Tue, 20 Feb 2007 14:17:50 +0000 (06:17 -0800)
committerCarl Worth <cworth@cworth.org>
Tue, 20 Feb 2007 14:17:50 +0000 (06:17 -0800)
Generally, this is a useful warning to have turned on, but for now
while we have some unused functions still in-progress, let's turn it
off so that we can have clean, warning-free compilation.

Makefile

index 54d45f0871faba5d60085cd126b613a88e9f4b8e..732fbf1f68a72540a8a09018c346bc8b3ebb000d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 WARN_CFLAGS=-Wall -Wpointer-arith -Wstrict-prototypes \
        -Wmissing-prototypes -Wmissing-declarations \
-       -Wnested-externs -fno-strict-aliasing
+       -Wnested-externs -fno-strict-aliasing -Wno-unused-function
 
 KUB_CFLAGS=$(WARN_CFLAGS) `pkg-config --cflags gtk+-2.0 librsvg-2.0` -DGTK_DISABLE_DEPRECATED
 KUB_LDFLAGS=`pkg-config --libs gtk+-2.0 librsvg-2.0`