Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 712 Bytes

README.md

File metadata and controls

34 lines (20 loc) · 712 Bytes

Autotools Template

Overview

This is a skeleton project for a source tree based on the GNU Build System. The steps below walk through the process of running autotools so that the project can build built using the standard way:

./configure && make && make install

Prerequisites

You will need to install the following GNU tools:

autoconf
automake

Step-by-Step

Clone this repository:

git clone https://github.com/gizero/autotools-skeleton.git

Generate the configure script:

autoreconf -ivf

Configure and build the project:

./configure
make