diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-10-04 19:05:15 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-10-04 19:05:15 +0000 |
commit | 273761db64335b4dd647f538efbd69a3823c5319 (patch) | |
tree | b1de51bd85fba0d314e84fc2df3cd5a7443c31c8 /configure.ac | |
parent | 2404976a5d1210b4547a76678aada49d0ae74e44 (diff) | |
download | dimension-273761db64335b4dd647f538efbd69a3823c5319.tar.xz |
New benchmarking suite.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
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 |