'./configure' is a script wrapper portable across several Unix systems (Linux, Solaris, etc.). "./configure" does a few things: test the build environment, fix portability issues, check other optional software, check where you want to install the software package, etc. You can find out what options you can configure by. / configure --help. By simply calling "./configure", you simply configure the package with what it considers to be the default. The main output file from "./configure" is usually the "Makefile" file, which is a combination of instructions for building / installing / uninstalling a software package.
make uses the Makefile to create a default target, which is usually a collection of things to build.
make install uses the makefile to build the install target, which installs the software.
ldav1s
source share