Parsing age values.
[gedcom-parse.git] / configure.in
index 03b894595c02c31c4959847dd3baac8753d6c5fc..e1f5f734ba17e55bb02977911bc5e304ec2c2547 100644 (file)
@@ -1,19 +1,28 @@
 # Process this file with autoconf to produce a configure script.
 # $Id$
 # $Name$
-AC_INIT(standalone.c)
+AC_INIT(gedcom.enc)
 
 dnl =============================================================
 dnl Global variables
 NAME=gedcom-parse
-VERSION=0.11
-LIBVERSION=0:1
-SHELL=/bin/sh
 AC_SUBST(NAME)
+
+VERSION=0.16
+VERSION_MAJOR=`echo $VERSION | sed 's/\..*$//'`
+changequote(<<,>>)
+VERSION_MINOR=`echo $VERSION | sed 's/^[^\.]*\.//'`
+changequote([,])
+AC_SUBST(VERSION_MAJOR)
+AC_SUBST(VERSION_MINOR)
 AC_SUBST(VERSION)
-AC_SUBST(SHELL)
+
+LIBVERSION=0:6
 AC_SUBST(LIBVERSION)
 
+SHELL=/bin/sh
+AC_SUBST(SHELL)
+
 dnl =============================================================
 AM_INIT_AUTOMAKE(${NAME},${VERSION})
 AM_CONFIG_HEADER(config.h)
@@ -37,7 +46,10 @@ AC_OUTPUT(Makefile
          gedcom/calendar/Makefile
          ansel/Makefile
          t/Makefile
+         t/input/Makefile
          doc/Makefile
+         doc/images/Makefile
          include/Makefile
+         include/gedcom.h
           intl/Makefile
           po/Makefile.in)