diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-07-01 18:19:45 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-07-01 18:19:45 +0200 |
commit | ab0ebc8a5b93cb7087bd51e0cb5a19493cf8fad2 (patch) | |
tree | 8fe27ce5e7f8bcc0b3efe6ac6bf7629b87170fe6 /Makefile | |
parent | 92403c2098f5942c1eba0b961059d245b48d1057 (diff) |
only printf() flow events #ifdef DISABLE_JSONIZER, print only json string otherwise
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -26,10 +26,10 @@ else ENABLE_SANITIZER = no endif -ifeq ($(VERBOSE),yes) -CFLAGS += -DVERBOSE +ifeq ($(DISABLE_JSONIZER),yes) +CFLAGS += -DDISABLE_JSONIZER else -VERBOSE = no +DISABLE_JSONIZER = no endif ifeq ($(EXTRA_VERBOSE),yes) @@ -53,7 +53,7 @@ help: @echo 'CUSTOM_LIBNDPI = $(CUSTOM_LIBNDPI)' @echo 'ENABLE_DEBUG = $(ENABLE_DEBUG)' @echo 'ENABLE_SANITIZER = $(ENABLE_SANITIZER)' - @echo 'VERBOSE = $(VERBOSE)' + @echo 'DISABLE_JSONIZER = $(DISABLE_JSONIZER)' @echo 'EXTRA_VERBOSE = $(EXTRA_VERBOSE)' .PHONY: help |