include.am 899 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. noinst_PROGRAMS+= \
  13. benchmark/blobslap_client \
  14. benchmark/blobslap_worker
  15. noinst_HEADERS+= \
  16. benchmark/benchmark.h
  17. noinst_LTLIBRARIES+= benchmark/libbenchmark.la
  18. benchmark_libbenchmark_la_SOURCES= benchmark/benchmark.c
  19. benchmark_blobslap_client_SOURCES= benchmark/blobslap_client.c
  20. benchmark_blobslap_client_LDADD= benchmark/libbenchmark.la libgearman/libgearman.la
  21. benchmark_blobslap_worker_SOURCES= benchmark/blobslap_worker.c
  22. benchmark_blobslap_worker_LDADD= benchmark/libbenchmark.la libgearman/libgearman.la