Spring cleaning.
[skel] / configure.ac
similarity index 82%
rename from configure.in
rename to configure.ac
index cbf3d67..6552ea9 100644 (file)
@@ -1,6 +1,4 @@
-dnl -*-m4-*-
-dnl
-dnl $Id: configure.in,v 1.8 2004/04/08 01:36:28 mdw Exp $
+dnl -*-autoconf-*-
 dnl
 dnl Configuration script for skel
 dnl
@@ -25,15 +23,19 @@ dnl You should have received a copy of the GNU General Public License
 dnl along with Skel; if not, write to the Free Software Foundation,
 dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-AC_INIT(skel.el.in)
-AM_INIT_AUTOMAKE(skel, 1.1.0)
+mdw_AUTO_VERSION
+AC_INIT([Skel], AUTO_VERSION, [mdw@distorted.org.uk])
+AC_CONFIG_SRCDIR([skel.el.in])
+AM_INIT_AUTOMAKE([foreign])
+
 AM_PATH_LISPDIR
 
 mdw_DEFINE_PATHS([
   skeldir=mdw_PATH([$datadir/$PACKAGE])
 ])
-AC_SUBST(skeldir)
+AC_SUBST([skeldir])
 
-AC_OUTPUT(Makefile skel.el)
+AC_CONFIG_FILES([Makefile skel.el])
+AC_OUTPUT
 
 dnl ----- That's all, folks -------------------------------------------------