I installed ffmpeg from the source with the help of this page.
I noticed that most of this tutorial calls make distclean after make install. But only libvpx calls make clean after installing.
According to this document,
make clean deletes all files that make created, and make distclean deletes all files that ./configure created.
make clean
Erase from the build tree the files built bymake all.make distclean
Additionally erase anything ./configure created.
I understand that make distclean is called for the next installation, but I could not understand why make clean is called after installation.
The installed ffmpeg works without any problem. So I asked this question because I only want to improve my knowledge about Linux.
It will be very helpful if someone gives me an explanation for it.