From e909ec3026c489eb54fa90673dc691a86524e4b5 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Mon, 2 Dec 2024 15:48:56 +0100 Subject: [PATCH] makefile: LOC envvar. --- makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/makefile b/makefile index 07dc32f..7347d5b 100644 --- a/makefile +++ b/makefile @@ -2,6 +2,12 @@ all: build-server Q ?= @ +# By default, the following makefile rules will use the compiled version +# of the applications (authd, authc), not the ones from the system +# (in /usr/local/bin/ for example). +# To avoid that, use: "make LOC=" +LOC ?= ./bin/ + include mk/build.mk include mk/install.mk include mk/setup.mk