From 7e5230b8ffe32cfe7c1ec31d37c40684893aa787 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 29 Aug 2008 02:42:58 -0400 Subject: Changed to using an autoconf/automake setup for building. This precipitated many changes to the code, including: - documentation has been moved into doc/ - the chess-eco opening moves are pre-generated from chess-eco.ps into chess-eco.fen, so users don't have to wait around for it to build - no longer using lispdoc to auto-gen function stubs in chess.texi, this means that chess-maint.el and lispdoc.el are gone --- configure.ac | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..fe7312f --- /dev/null +++ b/configure.ac @@ -0,0 +1,18 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.61) + +AC_INIT([emacs-chess],[2.0],[johnw@newartisans.com]) +AC_CONFIG_SRCDIR([chess.el]) +AM_INIT_AUTOMAKE([dist-bzip2]) + +# Checks for programs. +AC_PROG_MAKE_SET + +# Checks for emacs lisp path +AM_PATH_LISPDIR + +# Pepare the Makefiles +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT -- cgit v1.2.3