httpd.am 770 B

123456789101112131415161718192021222324252627282930313233
  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. t_httpd_SOURCES=
  13. t_httpd_LDADD=
  14. t_httpd_SOURCES+= tests/httpd_test.cc
  15. t_httpd_LDADD+= $(CLIENT_LDADD)
  16. #check_PROGRAMS+= t/httpd
  17. noinst_PROGRAMS+= t/httpd
  18. test-httpd: t/httpd gearmand/gearmand
  19. @t/httpd
  20. gdb-httpd: t/httpd gearmand/gearmand
  21. @$(GDB_COMMAND) tests/httpd
  22. helgrind-httpd: t/httpd gearmand/gearmand
  23. @$(HELGRIND_COMMAND) t/httpd
  24. valgrind-httpd: t/httpd gearmand/gearmand
  25. @$(VALGRIND_COMMAND) t/httpd