Release 1.3.1.
[skel] / configure.ac
CommitLineData
d50cdf63 1dnl -*-autoconf-*-
7fb0878b 2dnl
3dnl Configuration script for skel
4dnl
5dnl (c) 1998 Mark Wooding
6dnl
7
8dnl ----- Licensing notice --------------------------------------------------
9dnl
10dnl This file is part of Skel.
11dnl
12dnl Skel is free software; you can redistribute it and/or modify
13dnl it under the terms of the GNU General Public License as published by
14dnl the Free Software Foundation; either version 2 of the License, or
15dnl (at your option) any later version.
3a2c646e 16dnl
7fb0878b 17dnl Skel is distributed in the hope that it will be useful,
18dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20dnl GNU General Public License for more details.
3a2c646e 21dnl
7fb0878b 22dnl You should have received a copy of the GNU General Public License
23dnl along with Skel; if not, write to the Free Software Foundation,
24dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
d50cdf63
MW
26mdw_AUTO_VERSION
27AC_INIT([Skel], AUTO_VERSION, [mdw@distorted.org.uk])
28AC_CONFIG_SRCDIR([skel.el.in])
37422fae 29AC_CONFIG_AUX_DIR([config])
d50cdf63
MW
30AM_INIT_AUTOMAKE([foreign])
31
7fb0878b 32AM_PATH_LISPDIR
7fb0878b 33
198403c2
MW
34mdw_DEFINE_PATHS([
35 skeldir=mdw_PATH([$datadir/$PACKAGE])
36])
d50cdf63 37AC_SUBST([skeldir])
7fb0878b 38
37422fae 39AC_CONFIG_FILES([Makefile])
d50cdf63 40AC_OUTPUT
7fb0878b 41
42dnl ----- That's all, folks -------------------------------------------------