123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # 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_drizzle_test_CXXFLAGS=
- tests_drizzle_test_SOURCES=
- tests_drizzle_test_DEPENDENCIES=
- tests_drizzle_test_LDADD=
- tests_drizzle_test_SOURCES+= tests/basic.cc
- tests_drizzle_test_SOURCES+= tests/drizzle_test.cc
- tests_drizzle_test_DEPENDENCIES+= ${CLIENT_LDADD}
- tests_drizzle_test_LDADD+= ${CLIENT_LDADD}
- if HAVE_LIBDRIZZLE
- tests_drizzle_test_LDADD+= $(libdrizzle_LIBS)
- tests_drizzle_test_CXXFLAGS+= $(libdrizzle_CFLAGS)
- endif
- check_PROGRAMS += tests/drizzle_test
- noinst_PROGRAMS += tests/drizzle_test
- test-drizzle: tests/drizzle_test gearmand/gearmand
- @tests/drizzle_test
- gdb-drizzle: tests/drizzle_test gearmand/gearmand
- @$(GDB_COMMAND) tests/drizzle_test
- helgrind-drizzle: tests/drizzle_test gearmand/gearmand
- @$(HELGRIND_COMMAND) tests/drizzle_test
- valgrind-drizzle: tests/drizzle_test gearmand/gearmand
- @$(VALGRIND_COMMAND) tests/drizzle_test
|