make is a GNU command, so the only way you can get it on Windows is installing a Windows version like the one provided by GNUWin32. Anyway, there are several options for getting that: Directly. Aug 16, 2016Β Β· subsystem: cd subdir && $(MAKE) The value of this variable is the file name with which make was invoked. If this file name was /bin/make, then the recipe executed is cd subdir &&. Feb 2, 2011Β Β· For variable assignment in Make, I see := and = operator. What's the difference between them?

Recommended for you

You can do it globally with -s or --keep-silent - tells make to keep going, even if the command fails for some reason. You can do it globally via the -i flag (or --ignore-errors). + I was not familar with before.

You may also like