If you want to get started with autotools, try to build yourself a minimal autotools
project. Once you have a working stub, you already took the biggest hurdle.<p>You only need to focus on two files: configure.ac, where you check for features, and Makefile.am, where you list your build targets and their sources. You can
also write normal Makefile rules there.<p>After editing these files, run `autreconf -fi` to create/update the configure and Makefile script. Then run<p><pre><code> ./configure
make
</code></pre>
to build your project. Have a look at Appendix A/Basic Autotoolization on the submitted website or checkout libabc by Poettering/Sievers:<p>1. <a href="https://autotools.io/whosafraid.html#idm117385102076160" rel="nofollow">https://autotools.io/whosafraid.html#idm117385102076160</a><p>2. <a href="http://0pointer.de/blog/projects/libabc.html" rel="nofollow">http://0pointer.de/blog/projects/libabc.html</a>