Henti Smith wrote: [Tue Dec 17 2002, 05:16:41AM EST] > Sorry .. I'm not 100% sure which @ sign you are refering to. would you > like to clarify? In a Makefile: blah: @echo hello blah2: echo hello $ make blah hello $ make blah2 echo hello hello Without the leading @ sign, make shows the commands it's running. Aron