Pelles C forum

Pelles C => General discussions => Topic started by: czerny on June 23, 2013, 03:49:47 PM

Title: project target
Post by: czerny on June 23, 2013, 03:49:47 PM
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?
Title: Re: project target
Post by: TimoVJL on June 23, 2013, 03:57:37 PM
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.
Title: Re: project target
Post by: czerny on June 23, 2013, 04:09:05 PM
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 $@?