Add a flag so that 'make check V=1' will turn on verbose output.

This commit is contained in:
Steve Beattie 2008-04-16 16:09:36 +00:00
parent ee03760c1d
commit e41a326ef5

View file

@ -96,6 +96,9 @@ TEST_OBJECTS = $(filter-out parser_lex.o, \
$(filter-out parser_yacc.o, \
$(filter-out parser_main.o, ${OBJECTS} ${PCREOBJECTS})))
ifdef V
VERBOSE = 1
endif
ifndef VERBOSE
VERBOSE = 0
endif