I have a working MSP430Gxxxx CCSv5 project built with Grace with 18 variations defined by a #define macro. I'm looking for the command line syntax to support changes to the macros and define specific output file names?
If I had a standard GNU make project, I could create a batch file that would cycle through all the various modifications needed, something like the following:
make -D TIME_RANGE=1 -o myBuild_Range1.out
I'm not sure if its the Grace addition or just an added complication with CCSv5 but I cannot find a working example of the syntax to use to issue this from a command line.
Can anyone provide additional advice or suggestions?