Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dinfuehr/autotools-demo


https://github.com/dinfuehr/autotools-demo

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

autotools-demo
==============

This project should demonstrate basic usage of the GNU autotools.

## example0
The simplest configuration, only `configure.ac`.

```
autoreconf -i
./configure
```

## example1
Compile file `main.c` which includes `config.h`.

```
autoreconf -i
./configure
make
```

## example2
Compile `src/main.c`.

```
sh autogen.sh
./configure
make
```

# External build
It is also possible to build the project from other directories:

```
cd $PROJECT
mkdir example2-build
cd example2-build
../example2/configure
make
```