1AC_INIT([cgreen] , [1.0.beta1], [bug-report@address])
2AC_CONFIG_AUX_DIR([build-aux])
3AM_INIT_AUTOMAKE([-Wall -Werror foreign])
4#libtool (builds .la, .a and .so)
5AC_PROG_LIBTOOL
6#static lib (comment libtool and uncomment these)
7#AC_PROG_RANLIB
8AC_PROG_CC
9AC_CONFIG_HEADERS([config.h])
10AC_CONFIG_SRCDIR([src/unit.c])
11AC_CONFIG_FILES([Makefile])
12AC_OUTPUT
13