Make.exe in windows doesn't work properly

Hi.
I’ve installed make .exe to compile the C exercises.
I have this error:

D:\Programar\Exercism\c\armstrong-numbers>make test
Compiling tests.out
process_begin: CreateProcess(NULL, cc -std=c99 -g -Wall -Wextra -pedantic -Werror -Wmissing-declarations -DUNITY_SUPPORT_64 -DUNITY_OUTPUT_COLOR test-framework/unity.c ./*.c -o tests.out -lm, …) failed.
make (e=2): El sistema no puede encontrar el archivo especificado.
make: *** [tests.out] Error 2

Does anyone know what’s happening?

Thanks in advance.

I’ve never tried make on Windows but using the WSL2 for this. Which compiler do you have installed and which make?

Shouldn’t that be armstrong_numbers_test.out or similar?

Probably cc is not in the PATH and make complains that it cannot be found.

I’ve installed GNU Make from Make for Windows
And I’m using MinGW compiler.

Yes, you are right. This is the problem.
I’ve corrected the path and now it’s working.
Thanks.