Simply put, clean is to delete all files produced by the build process.
Specifically, .o files, configuration files, link libraries, resources copied to product, etc.
Same answer as gaosboy. Referring to the common Makefiles under Linux, the function of Clean is basically to clear the intermediate files, target files and executable files during the compilation process, so that the project can return to before it was compiled.
This Clean setting should also be visible (or modified?) in the Xcode project. I guess it is similar to the way Makefile is written.
Simply put, clean is to delete all files produced by the build process. Specifically, .o files, configuration files, link libraries, resources copied to product, etc.
Same answer as gaosboy. Referring to the common Makefiles under Linux, the function of Clean is basically to clear the intermediate files, target files and executable files during the compilation process, so that the project can return to before it was compiled.
This Clean setting should also be visible (or modified?) in the Xcode project. I guess it is similar to the way Makefile is written.