include.am 830 B

12345678910111213141516171819202122232425262728
  1. # vim:ft=automake
  2. # Gearman server and library
  3. # Copyright (C) 2008 Brian Aker, Eric Day
  4. # Copyright (C) 2009 Brian Aker, Eric Day, Monty Taylor
  5. # All rights reserved.
  6. #
  7. # Use and distribution licensed under the BSD license. See
  8. # the COPYING file in the parent directory for full text.
  9. #
  10. # Included from Top Level Makefile.am
  11. # All paths should be given relative to the root
  12. sbin_PROGRAMS+= gearmand/gearmand
  13. gearmand_gearmand_LDADD= \
  14. libgearman-server/libgearman-server.la \
  15. ${BETTER_MALLOC_LIBS}
  16. gearmand_gearmand_SOURCES= \
  17. gearmand/gearmand.cc \
  18. util/daemon.cc \
  19. util/pidfile.cc
  20. gearmand-valgrind: gearmand/gearmand
  21. $(LIBTOOL) --mode=execute valgrind --leak-check=yes --show-reachable=yes gearmand/gearmand
  22. gearmand-debug: gearmand/gearmand
  23. $(LIBTOOL) --mode=execute gdb gearmand/gearmand