#   FILE: foo -- 
# AUTHOR: W. Michael Petullo <mike@flyn.org>
#   DATE: 04 February 2005
# 
# Copyright (C) 2005 W. Michael Petullo <mike@flyn.org>
# All rights reserved.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


MAJOR_VERSION=0
MINOR_VERSION=0
MICRO_VERSION=1

AC_SUBST(MAJOR_VERSION)
AC_SUBST(MINOR_VERSION)
AC_SUBST(MICRO_VERSION)
AC_SUBST(VER_INFO)

AC_PREREQ(2.57)
AC_INIT(FIXME example: src/project.c.c, $MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION, mike@flyn.org)

AM_CONFIG_HEADER(config.h)

AM_INIT_AUTOMAKE(FIXME: project name, $MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION)

VER_INFO=`expr $MINOR_VERSION + $MAJOR_VERSION`:$MICRO_VERSION:$MINOR_VERSION

AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_LIBTOOL

AM_CONDITIONAL(FLYN, test "$FLYN")

# FIXME: You may want to add .pc if you are building a library.
AC_OUTPUT(Makefile dry/Makefile include/Makefile src/Makefile scripts/Makefile)
