Building Comedilib from CVS is slightly different from the releases.
There is an additional step of creating the configure script and
makefiles from the templates using automake, autoconf, etc. This
-is all done automatically by running the script ./autogen.sh.
-
-You may need to edit the autogen.sh script so that it runs the
-appropriate commands. Often, the necessary commands have version
-suffixes. Occasionally, for strange reasons, errors can be
-solved by running ./autogen.sh twice.
+is all done automatically by running the program autoreconf
+witch should be part of your distribution's autoconf package.
Requirements:
autoconf >= 2.54
libtool >= 1.5
-
+++ /dev/null
-#!/bin/sh
-
-if [ ! -f NEWS ] ; then
- touch NEWS
-fi
-if [ ! -f AUTHORS ] ; then
- touch AUTHORS
-fi
-if [ ! -f ChangeLog ] ; then
- touch ChangeLog
-fi
-
-aclocal -I m4 && \
-libtoolize --copy --force && \
-autoheader && \
-autoconf && \
-automake -a -c
-
-