vi Makefile.am
	SUBDIRS = src

mkdir src

vi src/Makefile.am
	bin_PROGRAMS = hello
	hello_SOURCES = hello.cpp

vi src/hello.cpp
	#include <iostream>
	using namespace std;

	int main()
	{
	  cout << "Hello, World!" << endl;
	  return 0;
	}

autoscan
mv configure.{scan,ac}

vi configure.ac
	AM_INIT_AUTOMAKE

aclocal
autoheader

touch README NEWS AUTHORS ChangeLog
automake -c -a

autoconf


