when the automake project runs . / configure
, Makefile, and other related files are generated based on the target machine (the current machine). However, these files not only occupy the volume, but also contain a lot of related information about the machine. This is not conducive to the release of source code, however, in order to debug the program, compiling and running is necessary, . / configure
must be executed.
so is there a tool or . / configure
with appropriate parameters to clean up unnecessary files?
I have tried to search for information on the Internet, but there doesn"t seem to be much information about the automake build tool, which, if any, is mainly about how it works. Of course, it cannot be ruled out that there will still be fish out of the net.
I have also tried to read . / configure
code, however, because I am not very familiar with shell, in addition, the amount of code in this file is too large, it is possible to fully understand in a short time, so my editor searches for "clean", but the word appears either in the comments or in the variable name, and the relevant content is also for the target file, binary file cleaning. There doesn"t seem to be any cleaning up of Makefile and other files.
if you have any suggestions, thank you for your reply!