From f0f8d391c588505ac01d7879681d59a42c3a8cee Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 10 Sep 2020 12:13:17 +0200 Subject: make: line-wrap CFLAGS_MIN definition Makes it a bit easier to read. Signed-off-by: Tobias Klauser --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 675535a..e6c7b57 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,11 @@ endif PIDFILE ?= /run/llmnrd/pid -CFLAGS_MIN := -W -Wall -DVERSION_STRING=\"v$(VERSION)\" -DGIT_VERSION=\"$(GIT_VERSION)\" -DPIDFILE=\"$(PIDFILE)\" +CFLAGS_MIN := -W -Wall \ + -DVERSION_STRING=\"v$(VERSION)\" \ + -DGIT_VERSION=\"$(GIT_VERSION)\" \ + -DPIDFILE=\"$(PIDFILE)\" + ifeq ($(DEBUG), 1) CFLAGS_MIN += -g -DDEBUG endif -- cgit v1.2.3-54-g00ecf