Re: gnu make manual tweak/fix to example used in 8.8 The eval Function

2005-08-10 Thread Paul D. Smith
%% James Coleman <[EMAIL PROTECTED]> writes: jc> Two lines had problems: (see original Makefile and modified one (as in jc> tgz) below) jc>$(1): $$($(1)_OBJ) $$($(1)_LIBS:%=-l%) jc> and jc> $(LINK.o) $^ $(LDLIBS) -o $@ jc> The first makes e.g. -lpriv and -lprotocol depend

gnu make manual tweak/fix to example used in 8.8 The eval Function

2005-08-10 Thread James Coleman
Hello, 8.8 The eval Function has an example of using eval, foreach, ... and I am planning on using something a bit like that myself. The example provided has a two problems and I have a fixed version (tested on GNU Make 3.80 on solaris). You might like to incorporate this fixed version in the m