Search notes:

Makefile.am

The (manually created) Makefile.am is turned into a portable Makefile.in by Automake.
A typical Makefile.am usually consists of a series of variable definitions.

Example

The Makefile.am for the famous hello world application might look as follows:
bin_PROGRAMS = hello
hello_SOURCES = hello.c

Index