diff options
Diffstat (limited to 'test/test-automation/configure.ac')
-rw-r--r-- | test/test-automation/configure.ac | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/test/test-automation/configure.ac b/test/test-automation/configure.ac index 418ff99b..1e4c803f 100644 --- a/test/test-automation/configure.ac +++ b/test/test-automation/configure.ac @@ -5,9 +5,19 @@ AC_PREREQ([2.65]) AC_INIT([runner], [0.01], [markus.kauppila@gmail.com]) AC_CONFIG_SRCDIR([runner.c]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR(acinclude) +AC_CONFIG_AUX_DIR(build-scripts) + +AM_INIT_AUTOMAKE + +#libdir="$(pwd)/tests" +#AC_SUBST([libdir]) # Checks for programs. AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_LIBTOOL +AM_PROG_CC_C_O # Checks for libraries. @@ -19,5 +29,12 @@ AC_CHECK_HEADERS([stdlib.h unistd.h]) # Checks for library functions. AC_FUNC_FORK -AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([Makefile + tests/Makefile]) AC_OUTPUT + +echo "" +echo "========================================" +echo "" +echo "./configure ready!" +echo "you're ready to run: 'make && make install'" |