Quote:
Originally Posted by maniannam
"make clear" this command will help for uninstall.
|
??? Absolutely not. Apart the fact that it is make clean (not clear), if you run make clean in the installation directory, then you can't uninstall it anymore, since the Makefile is deleted and there will be no "uninstall" target anywhere.
@teodor_b: you have to keep the whole installation directory. Another option is to manually delete the installed files and reverse back any step performed by make install. It is useful to save the output from make install. Usually I do that by
Code:
make install 2>&1 | tee install.log
to see the output in the terminal and redirect it to a file at the same time. Anyway, unless you are out of disk space, I suggest to keep the installation directory as is.