12345678910111213141516171819202122 |
- # vim:ft=automake
- # Gearman server and library
- # Copyright (C) 2011 Data Differential, http://datadifferential.com/
- # All rights reserved.
- #
- # Use and distribution licensed under the BSD license. See
- # the COPYING file in the parent directory for full text.
- #
- # Included from Top Level Makefile.am
- # All paths should be given relative to the root
- #
- tests_tokyocabinet_test_SOURCES= tests/tokyocabinet_test.cc tests/basic.cc
- tests_tokyocabinet_test_LDADD= ${CLIENT_LDADD}
- noinst_PROGRAMS+= tests/tokyocabinet_test
- check_PROGRAMS+= tests/tokyocabinet_test
- test-tokyocabinet: tests/tokyocabinet_test
- @tests/tokyocabinet_test
- valgrind-tokyocabinet:
- @$(VALGRIND_COMMAND) tests/tokyocabinet_test
|