So pretty much I am trying to compile my current source code using the GNU GCC without the need of the IDE. I'd love to setup an automated compiling system so I can produce nightlys but without a makefile this is massively complicated. Has anyone accomplish doing something like this?
SamGenie said:without a makefile this is massively complicated
Well, so write a makefile, then!
See 'Create Batch File':
http://www.keil.com/support/man/docs/uv4/uv4_dg_adsout.htm
That will record everything that uVision does when it does a build.
Note also that the .uvprojx file is just XML - so you can open it in any text editor (and many programmer's editors will do syntax highlighting for you).
Or run uVision from the command line:
http://www.keil.com/support/man/docs/uv4/uv4_commandline.htm
and note that using a makefile does not preclude sticking with the Keil tools.
Thank for your help, ill try some of your suggestions.