--- /dev/null
+# $Id$
+# $Name$
--- /dev/null
+## Process this file with automake to produce Makefile.in
+# $Id$
+# $Name$
+SUBDIRS = ansel gedcom . t doc include
+INCLUDES = -I $(srcdir)/include
+
+pkgdata_DATA = gedcom.enc
+noinst_PROGRAMS = testgedcom
+
+testgedcom_SOURCES = standalone.c
+testgedcom_LDFLAGS = -L gedcom/.libs -lgedcom
+
+EXTRA_DIST = $(pkgdata_DATA)
--- /dev/null
+# $Id$
+# $Name$
--- /dev/null
+# $Id$
+# $Name$
--- /dev/null
+## Process this file with automake to produce Makefile.in
+# $Id$
+# $Name$
+CFLAGS = -g
+libdir = $(pkgdatadir)
+
+pkgdata_DATA = gconv-modules
+
+lib_LTLIBRARIES = ANSI_Z39.47.la
+
+ANSI_Z39_47_la_LDFLAGS = -module -avoid-version
+ANSI_Z39_47_la_SOURCES = ANSI_Z39.47.c
+EXTRA_DIST = loop.c \
+ skeleton.c \
+ $(pkgdata_DATA)
--- /dev/null
+# Process this file with autoconf to produce a configure script.
+# $Id$
+# $Name$
+AC_INIT(standalone.c)
+
+dnl =============================================================
+dnl Global variables
+NAME=gedcom-parse
+VERSION=0.10
+LIBVERSION=0:1
+SHELL=/bin/sh
+AC_SUBST(NAME)
+AC_SUBST(VERSION)
+AC_SUBST(SHELL)
+AC_SUBST(LIBVERSION)
+
+dnl =============================================================
+AM_INIT_AUTOMAKE(${NAME},${VERSION})
+
+AC_PROG_CC
+AM_PROG_LIBTOOL
+AM_PROG_LEX
+AC_PROG_YACC
+if test "$YACC" = "bison -y"; then
+ AC_MSG_WARN([We'll remove the -y option here])
+ YACC=bison
+else
+ AC_MSG_ERROR([Sorry, bison is needed])
+fi
+AM_WITH_DMALLOC
+
+AC_OUTPUT(Makefile
+ gedcom/Makefile
+ ansel/Makefile
+ t/Makefile
+ doc/Makefile
+ include/Makefile)
--- /dev/null
+## Process this file with automake to produce Makefile.in
+# $Id$
+# $Name$
+
+EXTRA_DIST=parser.html
+
+dist-hook:
+ mkdir $(distdir)/images
+ cp -p $(srcdir)/images/schema.obj $(srcdir)/images/schema.png \
+ $(distdir)/images
--- /dev/null
+## Process this file with automake to produce Makefile.in
+# $Id$
+# $Name$
+
+INCLUDES = -I $(srcdir)/../include -DPKGDATADIR=\"$(pkgdatadir)\"
+YFLAGS = --debug --defines --name-prefix=gedcom_
+LFLAGS = -8
+CFLAGS = -g -O2 -W -Wall -pedantic
+
+lib_LTLIBRARIES = libgedcom.la
+libgedcom_la_SOURCES = lex.gedcom_1byte_.c \
+ lex.gedcom_hilo_.c \
+ lex.gedcom_lohi_.c \
+ gedcom.tab.c \
+ message.c \
+ multilex.c \
+ encoding.c \
+ interface.c
+libgedcom_la_LDFLAGS = -version-info $(LIBVERSION)
+BUILT_SOURCES = lex.gedcom_1byte_.c \
+ lex.gedcom_hilo_.c \
+ lex.gedcom_lohi_.c \
+ gedcom.tab.c \
+ gedcom.tab.h
+noinst_HEADERS = encoding.h \
+ gedcom_internal.h \
+ interface.h \
+ multilex.h
+EXTRA_DIST = gedcom.y \
+ gedcom_1byte.lex \
+ gedcom_hilo.lex \
+ gedcom_lohi.lex \
+ gedcom_lex_common.c
+
+gedcom.tab.c gedcom.tab.h: gedcom.y
+ $(YACC) $(YFLAGS) --name-prefix=gedcom_ $<
+
+lex.gedcom_1byte_.c: gedcom_1byte.lex
+ $(LEX) $(LFLAGS) -Pgedcom_1byte_ $<
+
+lex.gedcom_hilo_.c: gedcom_hilo.lex
+ $(LEX) $(LFLAGS) -Pgedcom_hilo_ $<
+
+lex.gedcom_lohi_.c: gedcom_lohi.lex
+ $(LEX) $(LFLAGS) -Pgedcom_lohi_ $<
+
+lex.gedcom_1byte_.c: gedcom.tab.h
+lex.gedcom_hilo_.c: gedcom.tab.h
+lex.gedcom_lohi_.c: gedcom.tab.h
--- /dev/null
+## Process this file with automake to produce Makefile.in
+# $Id$
+# $Name$
+include_HEADERS = gedcom.h
--- /dev/null
+## Process this file with automake to produce Makefile.in
+# $Id$
+# $Name$
+
+TEST_SCRIPT=test_script
+
+TESTS_ENVIRONMENT=$(srcdir)/$(TEST_SCRIPT)
+TESTS = allged.ged \
+ ansel.ged \
+ uhlbomcl.ged \
+ uhlcl.ged \
+ ulhbomcl.ged \
+ ulhc.ged \
+ ulhcl.ged \
+ ulhl.ged \
+ ulhlc.ged
+
+EXTRA_DIST=$(TEST_SCRIPT) $(TESTS)