On 2011-01-24 16:09:26 (+0330), ali hagigat <[email protected]> wrote:
> all: all1
>       @${MAKE} -f makefile23
> all1:
>       +@echo yyy
> I execute the above by: make -n -f makefile22
> The command echo yyy, will be echoed on the screen and if I use @+echo
> yyy, the result is the same. What i would do If I want echo yyy is
> executed but not echoed?
> 
Have you read the command line you're using?
'-n' causes make to print the command, despine the '@' prefix.

Regards,
Kristof


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to