postgres.am 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. test-postgres: tests/postgres_test gearmand/gearmand
  13. @tests/postgres_test
  14. gdb-postgres: tests/postgres_test gearmand/gearmand
  15. @$(GDB_COMMAND) tests/postgres_test
  16. valgrind-postgres: tests/postgres_test gearmand/gearmand
  17. @$(VALGRIND_COMMAND) tests/postgres_test
  18. tests_postgres_test_SOURCES=
  19. tests_postgres_test_CXXFLAGS=
  20. tests_postgres_test_DEPENDENCIES=
  21. tests_postgres_test_LDADD=
  22. tests_postgres_test_SOURCES+= tests/basic.cc
  23. tests_postgres_test_SOURCES+= tests/postgres_test.cc
  24. tests_postgres_test_DEPENDENCIES+= ${CLIENT_LDADD}
  25. tests_postgres_test_DEPENDENCIES+= gearmand/gearmand
  26. tests_postgres_test_LDADD+= ${CLIENT_LDADD}
  27. check_PROGRAMS += tests/postgres_test
  28. noinst_PROGRAMS += tests/postgres_test