Re: canned sequences and echo

2000-12-21 Thread Paul D. Smith
This is a known bug in this version of GNU make. I haven't generated a patch for it yet. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://www

canned sequences and echo

2000-12-21 Thread Stefan Seefeld
hi, I read in the info pages from make that the '@' token when used inside a canned sequence only affects the current line. However, I have a Makefile with these lines: define compile @echo "compiling $(@F)" $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) -c $< -o $@ endef ... %.o:$(