1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # 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_LDADD=
- tests_drizzle_test_LDFLAGS=
- tests_drizzle_test_SOURCES+= tests/basic.cc
- tests_drizzle_test_SOURCES+= tests/drizzle_test.cc
- tests_drizzle_test_LDADD+= libgearman/libgearman.la
- tests_drizzle_test_LDADD+= libtest/libtest.la
- tests_drizzle_test_LDADD+= tests/libstartworker.la
- tests_drizzle_test_LDFLAGS+= @LIBDRIZZLE_LDFLAGS@
- tests_drizzle_test_LDADD+= @LIBDRIZZLE_LIB@
- 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
|