diff options
author | mutantturkey <mutantturke@gmail.com> | 2012-08-03 09:31:00 -0400 |
---|---|---|
committer | mutantturkey <mutantturke@gmail.com> | 2012-08-03 09:31:00 -0400 |
commit | b60f78f975ae4a88b9aaa6301447ff9184223e2c (patch) | |
tree | b5947de39333758d0ee86a481aea67cd2150662b /fly-tools/Makefile | |
parent | b3aa1be134a2a18cda8fcb1c0692988d0dd8070a (diff) |
added -Wextra flag to CPPFLAGS and CFLAGS
Diffstat (limited to 'fly-tools/Makefile')
-rw-r--r-- | fly-tools/Makefile | 4 |
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 ) |