Tool/software: Code Composer Studio
Hello,
I'm using CCS 10. At the current time, CCS generates a makefile and a number of .mk files. Is it possible to generate a single makefile instead?
Thank you
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.
Tool/software: Code Composer Studio
Hello,
I'm using CCS 10. At the current time, CCS generates a makefile and a number of .mk files. Is it possible to generate a single makefile instead?
Thank you
CCS is based on Eclipse and the standard process for Eclipse managed make system is to generate a main makefile and several .mk files. The project and build system is described here: http://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_project-management.html#project-files-and-build-system-overview
However, if users want more control over the build process, they have the option of creating their own makefile and using a makefile project in CCS:
http://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_project-management.html#types-of-projects
Hi AartiG,
Thanks for the quick reply. I was hoping to avoid having to use ccs as part of the build toolchain and checking in numerous makefiles, as my aim was to create automated nightly builds.
I've come to the conclusion of using CLI and eclipsec to import and build the project. This allows me to generate the makefiles from eclipse project files. So far, this is working.
Thanks again for your help,
Chris