Makefile: set the default debug level to INFO, if not specified, for make run

This commit is contained in:
George Kiagiadakis
2020-07-29 19:23:16 +03:00
parent 71decc1734
commit a73e46e246

View File

@@ -1,3 +1,5 @@
WIREPLUMBER_DEBUG ?= 3
all:
ninja -C build
@@ -14,6 +16,7 @@ run: all
WIREPLUMBER_MODULE_DIR=build/modules \
WIREPLUMBER_CONFIG_FILE=src/config/wireplumber.conf \
WIREPLUMBER_CONFIG_DIR=src/config \
WIREPLUMBER_DEBUG=$(WIREPLUMBER_DEBUG) \
$(DBG) ./build/src/wireplumber
test: all