Hi TI experts,
I'm using CCS V4.2.3, CGT V4.9.0, uC:TMS570LS. My PC OS:Windows XP.
When i'm building my project(*.c and *.asm) in CCS IDE, it will automatically generate the makefile.
Question 1: In the auto-generated makefile, where does these macros(MAKECMDGOALS,S62_DEPS) defined and what's the purpose of these conditional directives?
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(S62_DEPS)),)
-include $(S62_DEPS)
endif
endif
Question 2: I want to know how this makefile generated? please describe the detailed steps and rules for generating this makefile?
Question 3: If i don't want to use CCS IDE generate this makefile, instead, i want to generate this makefile by using perl script, and run the whole build process in command line, how i generate this makefile? and what should i pay special attention to?