suppress "target '*' given more than once in the same rule"

2024-06-26 Thread Belliveau, Fran - 0666 - MITLL
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)

Re: suppress "target '*' given more than once in the same rule"

2024-06-26 Thread Renaud Pacalet
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

Re: [EXT] Re: suppress "target '*' given more than once in the same rule"

2024-06-26 Thread Belliveau, Fran - 0666 - MITLL
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