I have a setup where I use include directives to access makefile content used
by multiple “make” situations throughout a large project.
As I try to replace a bunch of (heavily simplified) things like:
FOO_DIR?=fd
BAH_DIR?=bd
$(FOO_DIR)/foo: $(F_HDRS)
mkdir -p $(FOO_DIR)
genF $@
$(BAH_DIR)
On 6/25/24 18:03, Belliveau, Fran - 0666 - MITLL wrote:
I have a setup where I use include directives to access makefile content used
by multiple “make” situations throughout a large project.
As I try to replace a bunch of (heavily simplified) things like:
FOO_DIR?=fd
BAH_DIR?=bd
$(FOO
Perfect answer.
Thanks
Francis Belliveau
Consultant
Lincoln Laboratory, Massachusetts Institute of Technology
244 Wood Street
Lexington, MA 02421-6426
On 6/26/24, 09:39, "Renaud Pacalet" wrote:
On 6/25/24 18:03, Belliveau, Fran - 0666 - MITLL wrote:
> I have a setup where I us