I have a peculiar set of makefiles in a legacy project. They are processed by the Watcom make, but they seem to have the NMAKE file format. I frequently encounter the following construct:
*$(_cmd_run)
$(_cmd_run)
is simply a macro expansion, but in this case there is also an asterisk before the dollar sign. I can't seem to find any documentation as to what its purpose is. NMAKE documentation doesn't have anything with regard to this syntax. I've even tried to look up Open Watcom source files, but to no avail.
What does this asterisk signify?