added VALFLAGS varible
authorPatrik Gornicz <Gornicz.P@gmail.com>
Sat, 9 Aug 2008 17:44:12 +0000 (13:44 -0400)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Sat, 9 Aug 2008 17:44:12 +0000 (13:44 -0400)
src/Makefile

index 1e3e3f5..2c1cf92 100644 (file)
@@ -6,6 +6,7 @@ LIBS := ${LIBSDL} ${LIBGL}
 OPTFLAGS := -O2
 DBGFLAGS := -ggdb
 PRFFLAGS := ${DBGFLAGS} -pg
+VALFLAGS := --leak-check=full
 
 #CXX := g++
 CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
@@ -132,7 +133,7 @@ gdb: all
 
 .PHONY: val
 val: all
-       valgrind --leak-check=full ${TARGET}
+       valgrind ${VALFLAGS} ${TARGET}
 
 .PHONY: prof
 prof: all