aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJamie Bullock <jamie@postlude.co.uk>2006-10-04 18:19:25 +0000
committerJamie Bullock <jamie@postlude.co.uk>2006-10-04 18:19:25 +0000
commit936b57b248ab7d69410beb65c0f5a167146f1943 (patch)
treebe99806ecbb0980e14afe2a58469362ce791c1ae /configure.in
parent6d00829a8ccef20c0ce7eeecc54cd3bb5f94b3bd (diff)
downloadLibXtract-936b57b248ab7d69410beb65c0f5a167146f1943.tar.gz
LibXtract-936b57b248ab7d69410beb65c0f5a167146f1943.tar.bz2
LibXtract-936b57b248ab7d69410beb65c0f5a167146f1943.zip
Added doxygen tags and compile scripts
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 6 insertions, 5 deletions
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)