NO

Author Topic: project target  (Read 2831 times)

czerny

  • Guest
project target
« 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?
« Last Edit: June 23, 2013, 04:01:10 PM by czerny »

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2118
Re: project target
« Reply #1 on: June 23, 2013, 03:57:37 PM »
Does anybody know what $** stands for?
from pomake help:
Quote
$** Specifies the name of all dependency files, separated by space.
May the source be with you

czerny

  • Guest
Re: project target
« Reply #2 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 $@?