summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-10-04 19:05:15 +0000
committerTavian Barnes <tavianator@gmail.com>2009-10-04 19:05:15 +0000
commit273761db64335b4dd647f538efbd69a3823c5319 (patch)
treeb1de51bd85fba0d314e84fc2df3cd5a7443c31c8 /configure.ac
parent2404976a5d1210b4547a76678aada49d0ae74e44 (diff)
downloaddimension-273761db64335b4dd647f538efbd69a3823c5319.tar.xz
New benchmarking suite.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 9 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 503262a..2849b10 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,11 +28,18 @@ AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
+dnl Timing library for benchmarks
+AC_CHECK_LIB([sandglass], [sandglass_create],
+ [],
+ [AC_MSG_WARN([libsandglass not found - benchmarking suite will not work correctly])])
+
dnl Generate Makefiles
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([Makefile
- doc/Makefile
libdimension/Makefile
tests/Makefile
- tests/libdimension/Makefile])
+ tests/libdimension/Makefile
+ bench/Makefile
+ bench/libdimension/Makefile
+ doc/Makefile])
AC_OUTPUT