A README file should provide instructions on building an application,
but if one is absent, you know that the application supports autoconf
if you see a configure.in file, or see a script
file called configure. If the package creator
built a configure script manually, instructions will most likely be
included within the README.
As a demonstration, I downloaded a GNU library called
plotutils that provides graphics capability.
After running gunzip and
tar on the package to decompress the files, I
looked at the topmost directory and found a configure file. I ran
this using the following command:
> ./configure
The application can actually take a bit of time, and when finished,
Makefiles have been generated for the application directories. All
that's required at this point is to run
make install as root:
> make install