Content originally posted in LPCWare by MikeSimmonds on Mon Mar 23 04:42:34 MST 2015
Clicking the "Clean" quickstart button invokes the build process, but instead of invoking the auto generated makefile
for a target "all" it selects target "clean".
You can look at the makefile in the debug/release directories to see what it does, but it is usless to edit this to add
any of your own operations because they will be lost when the makefile is next regenerated.
So, in the project properties (somewhere, I can't be bothered to see exactly where) you can change ...
(a) either to use your own makefile (which you must supply and which will not get shafted by the auto makefile
generation) I think you untick 'Managed makefile' box or similar. You can probably COPY as a new file the current
auto generated makefile and fiddle with it. (Consolidate into a single file for a start!)
or (b) Maybe the 'clean' section allows 'post build' steps just as the build does.
Or maybe (c) tell it to run an external program, but that might be for build only.
I never build via the IDE, so the details are a bit vague for me. Try the built in help, you may get lucky, I never have.
Anyway, I am sure that there IS a way, cheers, Mike.