libdrizzle.am 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # vim:ft=automake
  2. # Gearman server and library
  3. # Copyright (C) 2011 Data Differential, http://datadifferential.com/
  4. # All rights reserved.
  5. #
  6. # Use and distribution licensed under the BSD license. See
  7. # the COPYING file in the parent directory for full text.
  8. #
  9. # Included from Top Level Makefile.am
  10. # All paths should be given relative to the root
  11. #
  12. tests_drizzle_test_CXXFLAGS=
  13. tests_drizzle_test_SOURCES=
  14. tests_drizzle_test_LDADD=
  15. tests_drizzle_test_LDFLAGS=
  16. tests_drizzle_test_SOURCES+= tests/basic.cc
  17. tests_drizzle_test_SOURCES+= tests/drizzle_test.cc
  18. tests_drizzle_test_LDADD+= libgearman/libgearman.la
  19. tests_drizzle_test_LDADD+= libtest/libtest.la
  20. tests_drizzle_test_LDADD+= tests/libstartworker.la
  21. tests_drizzle_test_LDFLAGS+= @LIBDRIZZLE_LDFLAGS@
  22. tests_drizzle_test_LDADD+= @LIBDRIZZLE_LIB@
  23. check_PROGRAMS += tests/drizzle_test
  24. noinst_PROGRAMS += tests/drizzle_test
  25. test-drizzle: tests/drizzle_test gearmand/gearmand
  26. @tests/drizzle_test
  27. gdb-drizzle: tests/drizzle_test gearmand/gearmand
  28. @$(GDB_COMMAND) tests/drizzle_test
  29. helgrind-drizzle: tests/drizzle_test gearmand/gearmand
  30. @$(HELGRIND_COMMAND) tests/drizzle_test
  31. valgrind-drizzle: tests/drizzle_test gearmand/gearmand
  32. @$(VALGRIND_COMMAND) tests/drizzle_test