From 936b57b248ab7d69410beb65c0f5a167146f1943 Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Wed, 4 Oct 2006 18:19:25 +0000 Subject: Added doxygen tags and compile scripts --- configure.in | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 4729c3f..0b80ff5 100644 --- a/configure.in +++ b/configure.in @@ -1,8 +1,5 @@ AC_PREREQ(2.13) -AC_INIT(src/libxtract.c) - -PACKAGE=libxtract -VERSION=0.1.0 +AC_INIT([libxtract], [0.10], [bugs@postlude.co.uk]) AM_INIT_AUTOMAKE($PACKAGE, $VERSION) AM_CONFIG_HEADER(config.h) @@ -16,6 +13,8 @@ AC_PROG_LIBTOOL # else with_vector=no ; fi ], with_vector=no) AC_CHECK_HEADERS([math.h]) +AC_CHECK_PROG([DOXYGEN], [doxygen], [doc], []) +AC_SUBST(DOXYGEN) AC_ARG_ENABLE(vector, [ --enable-vector Turn fft-based vector processing on], @@ -38,4 +37,6 @@ fi AM_CONDITIONAL(BUILD_VECTOR, test "x${vector}" = 'xtrue') -AC_OUTPUT(Makefile src/Makefile xtract/Makefile) +AC_CONFIG_FILES([doc/documentation.doxygen]) + +AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile) -- cgit v1.2.3