Debianization.
[skel] / configure.in
CommitLineData
831c5bb2 1dnl -*-m4-*-
7fb0878b 2dnl
831c5bb2 3dnl $Id: configure.in,v 1.7 2003/11/29 23:35:38 mdw Exp $
7fb0878b 4dnl
5dnl Configuration script for skel
6dnl
7dnl (c) 1998 Mark Wooding
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl This file is part of Skel.
13dnl
14dnl Skel is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU General Public License as published by
16dnl the Free Software Foundation; either version 2 of the License, or
17dnl (at your option) any later version.
18dnl
19dnl Skel is distributed in the hope that it will be useful,
20dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
21dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22dnl GNU General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU General Public License
25dnl along with Skel; if not, write to the Free Software Foundation,
26dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28dnl ----- Revision history --------------------------------------------------
29dnl
30dnl $Log: configure.in,v $
831c5bb2 31dnl Revision 1.7 2003/11/29 23:35:38 mdw
32dnl Debianization.
33dnl
4c9ce93b 34dnl Revision 1.6 1999/12/22 17:09:40 mdw
803469c8 35dnl Version bump.
36dnl
a672b3b8 37dnl Revision 1.3 1999/05/06 20:28:52 mdw
38dnl Fix the version number to be three-part, rather than two-part.
39dnl
def3ecb5 40dnl Revision 1.2 1999/05/05 19:29:53 mdw
41dnl Remove redundant call to `AM_PROG_INSTALL'.
42dnl
43dnl Revision 1.1.1.1 1999/04/05 13:44:59 mdw
44dnl Initial import.
7fb0878b 45dnl
46
47AC_INIT(skel.el.in)
831c5bb2 48AM_INIT_AUTOMAKE(skel, 1.1.0)
7fb0878b 49AM_PATH_LISPDIR
7fb0878b 50
51mdw_prefix="$prefix"
52test "$prefix" = "NONE" && prefix="$ac_default_prefix"
53eval "skeldir=\"$datadir/$PACKAGE\""
54prefix="$mdw_prefix"
55AC_SUBST(skeldir)
56
57AC_OUTPUT(Makefile skel.el)
58
59dnl ----- That's all, folks -------------------------------------------------