From 888bda0acefb66dadbcb5198e3a78e6fd7b6729b Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 2 Apr 2021 13:59:17 +0200 Subject: [PATCH] BUILD: makefile: always build the flags utility This utility is absolutely required for developers and not having it built by default is a real pain that tends to encourage keeping an outdated copy somewhere else. Let's have it built by default then, since it has no dependency and is ultra-small. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d5c1c5f7c..25a719d4c 100644 --- a/Makefile +++ b/Makefile @@ -837,7 +837,7 @@ all: @echo @exit 1 else -all: haproxy $(EXTRA) +all: haproxy dev/flags/flags $(EXTRA) endif endif