In the project tree --> target files --> properties -- build commands
one can use some macros like $@ (target file).
Does anybody know what $** stands for (*.obj ?)?
Is there an AddIn SDK way to get the values of this macros?
Quote from: czerny on June 23, 2013, 03:49:47 PM
Does anybody know what $** stands for?
from pomake help:
Quote$** Specifies the name of all dependency files, separated by space.
Oh! What silly!
I had not reallized that these are the make file macros.
So, is there an other way than to parse the make file to get the target name $@?