Re: How to include automatic variables as part of a dependency

2017-09-23 Thread Bob Proulx
Michael Powell wrote: > Bob Proulx wrote: > > Please send your make questions to the mailing list. > > Do you happen to know of a way to subscribe to that mailing list? I > can't seem to find it and I've checked the gnu.org web site. Ah... *That* is a question I can help with! :-)

Re: How to include automatic variables as part of a dependency

2017-09-23 Thread Michael Powell
On Sat, Sep 23, 2017 at 4:33 PM, Bob Proulx wrote: > Michael Powell wrote: >> > This is running via Git for Windows of course, GNU Make 3.80. > >> Any other suggestions are welcome. > > Since your question is specifically about 'make' then as noted in our > last exchange the better mailing list is

Re: How to include automatic variables as part of a dependency

2017-09-23 Thread Bob Proulx
Michael Powell wrote: > > This is running via Git for Windows of course, GNU Make 3.80. > Any other suggestions are welcome. Since your question is specifically about 'make' then as noted in our last exchange the better mailing list is the mailing list where the make developers and other make ex

Re: How to include automatic variables as part of a dependency

2017-09-20 Thread Michael Powell
On Wednesday, September 20, 2017 at 9:11:39 PM UTC-4, Michael Powell wrote: > Hello, > > I wonder is this possible. > > $(OBJS): > # compile ... > > $(EXES): $(@:.exe=.obj) > # link ... > > Where OBJS is the requisite list of object files, and EXES is a corresponding > list of executables. >

How to include automatic variables as part of a dependency

2017-09-20 Thread Michael Powell
Hello, I wonder is this possible. $(OBJS): # compile ... $(EXES): $(@:.exe=.obj) # link ... Where OBJS is the requisite list of object files, and EXES is a corresponding list of executables. This is running via Git for Windows of course, GNU Make 3.80. I could have sworn this was working for