vi Makefile.am
	SUBDIRS = src

mkdir src

vi src/Makefile.am
	bin_PROGRAMS = hello.exe
	hello_exe_SOURCES = hello.cs

	SUFFIXES = .cs .exe
	.cs.exe:
		$(CSC) $^ /out:$@

	hello.exe: $(hello_exe_SOURCES)

vi src/hello.cpp
	using System;

	namespace Autotoolstest
	{
	  public class mono01
	  {
	    public static void Main()
	    {
	      Console.WriteLine(@"Hello, World!");
	    }
	  }
	}

autoscan
mv configure.{scan,ac}

vi configure.ac
	AM_INIT_AUTOMAKE
	m4_include([m4/cli.m4])
	AM_PROG_CLI

aclocal
#autoheader

touch README NEWS AUTHORS ChangeLog
automake -c -a

autoconf
