The principle of make is to execute a command called Makefile file, and the basic use is to automatically compile the source file according to the instructions in makefile. It can also be used to do things like installing software,
Uninstall software and other things, but the premise is that the author wrote in Makefile. For example, there are some things in makefile:
...
Install: < commands >
Then, with make install, the makes program will follow the above install: The following instructions < commands > perform the installation, uninstall is the same, most of the authors will write
The part that is unloaded, simply executes make unistall ,
and if the author is lazy and does not write, it is only according to the steps in make install to see what files it has copied to
Go, and then manually delete them individually. There is also a key point is that after compiling the installation, do not delete the source code, or even if the author wrote the Unnistall target, you do not makefile can hold