configure: conditional creation of Makefiles in test subdir.

This commit is contained in:
Andrei Belov 2016-07-06 07:45:04 +03:00 committed by Felipe Zimmerle
parent 38b338d1d6
commit ee9f3ebc59
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -278,14 +278,17 @@ AC_CONFIG_FILES([\
doc/Makefile \
src/Makefile \
others/Makefile \
test/Makefile \
test/benchmark/Makefile \
test/fuzzer/Makefile \
examples/Makefile \
examples/simple_example_using_c/Makefile \
examples/multiprocess_c/Makefile \
])
AM_COND_IF([TEST_UTILITIES],
[AC_CONFIG_FILES([test/Makefile test/benchmark/Makefile])])
AM_COND_IF([AFL_FUZZER],
[AC_CONFIG_FILES([test/fuzzer/Makefile])])
AC_CONFIG_HEADERS([src/config.h])