Thank you for your reply and your help, you are correct!
This bugreport can be closed.
KR,
A.Timmermans
On 09/14/18 22:06, A.Timmermans wrote:
incorrect, does not compile:
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
I'm pretty confident that's the correct way to specify this. Can you provide an
example of what exactly is going wrong? A typical error is to erroneously pu
incorrect, does not compile:
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
correct, compiles:
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) -o $@ $(AM_LDFLAGS) $(LDFLAGS)
CXXLINK = $(CXXLD) $(AM_CXXFL