Hello,
I'm trying to build a project on Code Composer Studio v4, but I'm facing some problems.
I'm using the "Generated Makefile Builder" Builder, but I want to add some variables to the "makefile".. for example:
"NUMST = 2"
How can I do this?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I'm trying to build a project on Code Composer Studio v4, but I'm facing some problems.
I'm using the "Generated Makefile Builder" Builder, but I want to add some variables to the "makefile".. for example:
"NUMST = 2"
How can I do this?
Sounds like you have your own makefile that you maintain and using the a standard makefile project to build in CCS
I suggest taking a look at the make manual, specifically the chapter that covers variables:
http://sunsite.ualberta.ca/Documentation/Gnu/make-3.79/html_chapter/make_6.html
Thanks
ki