I need to assign a variable which value is based on the operating system. It looks like this (pseduo code):
CMD_NAME = OS == WIN ? cmd.bat : cmd.sh How to write it in GNU make? I am a newbie here. Thanks!
I need to assign a variable which value is based on the operating system. It looks like this (pseduo code):
CMD_NAME = OS == WIN ? cmd.bat : cmd.sh How to write it in GNU make? I am a newbie here. Thanks!