X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Finclude.am;h=a1ed6ede1d298c574d8d094708540ed3dd822825;hb=5a65c28db362c4d62419075c5c9e416fd855a9f9;hp=d6d9b18a22963de6b4568ec2a5f44c9e85db7744;hpb=349ca737f30ff0b6c3c71034f0930660663fa360;p=awesomized%2Flibmemcached diff --git a/libtest/include.am b/libtest/include.am index d6d9b18a..a1ed6ede 100644 --- a/libtest/include.am +++ b/libtest/include.am @@ -7,14 +7,46 @@ # # included from Top Level Makefile.am # All paths should be given relative to the root +# + +LIBUTEST_TMP = ${abs_top_builddir}/tests/var/tmp/ + +CLEANFILES+= \ + tests/var/log/* \ + tests/var/tmp/* noinst_HEADERS+= \ + libtest/callbacks.h \ + libtest/collection.h \ + libtest/common.h \ + libtest/core.h \ + libtest/error.h \ + libtest/failed.h \ + libtest/framework.h \ + libtest/get.h \ + libtest/runner.h \ libtest/server.h \ - libtest/test.h + libtest/stats.h \ + libtest/strerror.h \ + libtest/test.h \ + libtest/test.hpp \ + libtest/visibility.h noinst_LTLIBRARIES+= libtest/libserver.la -libtest_libserver_la_SOURCES= libtest/server.c +libtest_libserver_la_SOURCES= libtest/memcached.cc noinst_LTLIBRARIES+= libtest/libtest.la -libtest_libtest_la_SOURCES= libtest/test.c +libtest_libtest_la_SOURCES=\ + libtest/framework.cc \ + libtest/test.cc +libtest_libtest_la_CFLAGS= ${AM_CFLAGS} ${NO_CONVERSION} -DBUILDING_LIBTEST +libtest_libtest_la_CPPFLAGS= ${AM_CPPFLAGS} + +tests/var: tests/var/log tests/var/tmp + $(mkdir_p) tests/var + +tests/var/log: + $(mkdir_p) tests/var/log +tests/var/tmp: + $(mkdir_p) tests/var/tmp