Running “make clean” does not remove custom command outputs. Why?
In CMake 2.2 and higher custom command outputs should be removed by make clean. Make sure you are using at least this version. Prior to CMake 2.2 custom command outputs were not automatically added to the list of files to clean. In CMake 2.0 the developer can specify a list of files to be deleted. This can be done using SET_DIRECTORY_PROPERTIES setting property ADDITIONAL_MAKE_CLEAN_FILES to the list of files. We however strongly recommend using an “out-of-source” build which never writes any files to the source tree. Using a separate source and build tree greatly reduces the need for “make clean” and “make distclean” targets to clean away files that differ between builds.