aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormutantturkey <mutantturke@gmail.com>2012-08-03 09:31:00 -0400
committermutantturkey <mutantturke@gmail.com>2012-08-03 09:31:00 -0400
commitb60f78f975ae4a88b9aaa6301447ff9184223e2c (patch)
treeb5947de39333758d0ee86a481aea67cd2150662b
parentb3aa1be134a2a18cda8fcb1c0692988d0dd8070a (diff)
added -Wextra flag to CPPFLAGS and CFLAGS
-rw-r--r--fly-tools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/fly-tools/Makefile b/fly-tools/Makefile
index c27dcb1..eea1a76 100644
--- a/fly-tools/Makefile
+++ b/fly-tools/Makefile
@@ -1,7 +1,7 @@
CPPC = g++
CC = gcc
-CFLAGS= -O2 -Wall -s
-CPPFLAGS= -O2 -Wall -s
+CFLAGS= -O2 -Wall -s -Wextra
+CPPFLAGS= -O2 -Wall -s -Wextra
MAGICKCPPFLAGS = $(shell pkg-config --cflags --libs ImageMagick++ gsl)
MAGICKCFLAGS = $(shell pkg-config --cflags --libs MagickWand )
CVBLOBCPPFLAGS = $(shell pkg-config --cflags --libs opencv cvblob )