I am newbie of Autotools. From my understanding, one would use the following basic steps to build software using Autotools:
autoreconf --install
./configure
make
However, I noticed that most open source software packages (on Linux) does not need the 1st step. Most of the time they just need step 2 and 3 to build. It seems that they already are packaged with a Makefile.in
. I am wondering why? Do they manually code the Makefile.in
, or does the software developer use autoreconf
to generate the Makefile.in
before creating the software package?