Hey, you build the entire Qt library (and presumably examples and demos), how could you expect the build files to be so small and so few that you wouldn't notice them?
All the extra size comes from intermediate build files, often called "object files" which are at the last compilation stage linked together to form the executable and these files are not deleted after the build because the makefile system allow them to be reused for subsequent builds as long as the associated source files are not modified. To free space you just need to remove these files (you could just do a make clean if you made sure to backup the executables (EXEs, DLLs and LIBs) which would also get deleted in the process and you probably don't want that to happen).
Bookmarks