We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I'm building my project via the command line using something like this:
"C:\Program Files\Keil\UV4\Uv4.exe" -b ".\myProj.uvproj"
The problem is that this command does not send anything to the stdout. The only option I see is to output the results to a file, using the -o option. Is there any way of just showing the results in the same command prompt window without resorting to some ugly hack?
Also, is there any way to perform a clean on a project via the command line?
Because it is, essentially, an interactive tool - so everything happens through the GUI (Graphical User Interface).
For non-interactive use - when there is, effectively, no User - make or some equivalent would be more appropriate.
I used the contents of the output directory as information to manually write a Makefile.
*.__i contains the compiler options needed when compiling each object file. *.d contains the dependancies for each source file. <proj>.lnp contains information for linking.
All that is missing is an automatic tool to scan these files and create a real Makefile.