From 9bec5056ec35008afd4d68528718fd4519cd3503 Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Sat, 18 Sep 2010 19:10:11 +0200 Subject: Initial evemu commit Evemu is a kernel device and emulator, which allows for remote creation and testing of arbitrary devices. Signed-off-by: Henrik Rydberg --- configure.ac | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..58c140d --- /dev/null +++ b/configure.ac @@ -0,0 +1,29 @@ +# Initialize Autoconf +AC_PREREQ([2.60]) +AC_INIT([Kernel device emulation], + [1.0.0], + [], + [evemu]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_AUX_DIR([config-aux]) + +# Initialize Automake +AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +LIB_VERSION=1:0:0 +AC_SUBST([LIB_VERSION]) + +# Initialize libtool +AC_PROG_LIBTOOL + +# Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL + +AC_CONFIG_FILES([Makefile + src/Makefile + tools/Makefile + evemu.pc]) +AC_OUTPUT -- cgit v1.2.3