1
Hello
I have the following scenario, several machines shared in network, and with directories visible to each other. A developer called the program build on machine 1, but the program only compiles correctly on machine 2 (environment issues and SO/LIBS versions).
My question is: is there any way in Makefile to put some check to prevent compilation if it is not machine 2?
So in this case there is an environment variable that is storing the name of the machine ...and I can attach to it. Thanks @Bacco I will search for ways to get the name of the machine and assign in make this check
– MCunha98
probably the case of making $(shell COMMAND)
– Bacco