%% Claudio Fontana <[EMAIL PROTECTED]> writes: cf> I have written a Makefile (.am, but this is a Make cf> issue), containing:
cf> -------------------------- cf> description: cf> description-long: cf> .SILENT: description description-long cf> -------------------------- cf> on the command line, but when run from the cf> install-data-hook I get: cf> make[n]: Entering directory `foo' cf> make[n]: Leaving diretory `foo` cf> messages that cripple my output file. cf> I thought that the -s option should be stronger than cf> the submake implicit -w option: It is. This works fine for me, as documented. You're going to have to provide a complete example that can reproduce the problem; your email just gives some snippets and my attempt to reproduce it with a simple makefile failed: $ cat Makefile recurse: ; @$(MAKE) -s print print: ; @echo hi $ make hi ??? Doesn't this work properly for you? -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Bug-make mailing list Bug-make@gnu.org http://lists.gnu.org/mailman/listinfo/bug-make