aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-25 15:58:05 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-25 15:58:05 -0700
commitc7482b4dce114b1c09cbac2f4ef6d0defdb23258 (patch)
treec661798f1bfab45962f169c5c2474d56a19c8768 /Makefile
parenteb7b8cf31a8378784e97966204559f1b270ac3e9 (diff)
Add -Wmising-declarations and fix warnings.
Wow, lots of missing 'static' on internal functions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b2d5924b..894874ae 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
PROGS=notmuch
-CXXWARNINGS_FLAGS=-Wall -Wextra -Wwrite-strings
+CXXWARNINGS_FLAGS=-Wall -Wextra -Wmissing-declarations -Wwrite-strings
CWARNINGS_FLAGS=$(CXXWARNINGS_FLAGS)
CDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc`