I want to set a variable if it is empty. I tried in this way:
.... TEST := $(something) ... TEST ?= $(something else)
The first $(somethi
$(somethi
Folks, I think there's a simpler solution
KDIR ?= "foo"
From: What is ?= in Makefile