diff options
| -rw-r--r-- | Makefile | 3 | ||||
| -rw-r--r-- | tests/Makefile | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ VERSION=0.1.4 CC=gcc -CFLAGS=-Wall -DVERSION=$(VERSION) -g -O3 +CFLAGS=-Wall -Wno-unused-result -Wsign-compare -Wstrict-prototypes \ + -DVERSION=$(VERSION) -g -O3 INCLUDE= -Iinclude LIB= -Llib DOXY=doxygen diff --git a/tests/Makefile b/tests/Makefile index 15f5575..8d00c35 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-Wall -g -rdynamic -DNDEBUG $(OPTFLAGS) +CFLAGS=-Wall -Wno-unused-result -Wsign-compare -g -rdynamic -DNDEBUG $(OPTFLAGS) INCLUDE=-I../include/ -I./include LIB=-L../lib |
